/*
Theme Name: KSA LeaseDeals Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A custom WordPress theme for the KSA LeaseDeals website, designed to be used with Elementor Pro.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: elementor, custom-theme, one-page
Text Domain: ksaleasedeals
*/

/* General Body & Link Styling */

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
	--e-global-typography-primary-letter-spacing: 1px;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #006567; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #006567; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #006567; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


body.elementor-page {
 	color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
	margin: 0 !important;
}
a, .elementor-button-link {
  color: var(--e-global-color-primary);
  text-decoration: none;
  transition: 0.3s;
}
a:hover, .elementor-button-link:hover {
  color: #3b71ca;
  text-decoration: none;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    font-family: "Nunito", sans-serif;
}
.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--e-global-color-primary);
    bottom: 0;
    left: calc(50% - 25px);
}
.section-title p {
    margin-bottom: 0;
    color: #6c757d;
}

/* Hero Section Specifics */
p.ehp-flex-hero__intro {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 15px !important;
    background-color: #f0f3ff !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--accent-color) !important;
}
.accent-text {
  color: var(--e-global-color-primary);
}
h2.ehp-flex-hero__heading {
	font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem;
}
h2.ehp-flex-hero__heading .accent-text {
    color: var(--accent-color);
}
.hero{
	padding-top: 0 !important;
}
.customers-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.customer-avatars .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
}
.customer-avatars .avatar:first-child {
    margin-left: 0;
}
.customer-avatars .more {
    background-color: var(--e-global-color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* About Section */


/* Features Tabs Styling */
.features .nav-tabs {
    border: 0;
}
.features .nav-link {
    border: 0;
    padding: 20px;
    color: #555;
    border-radius: 10px;
    background-color: #f1f1f1;
    margin: 0 10px;
    transition: 0.3s;
}
.features .nav-link.active {
    background: var(--e-global-color-primary);
    color: #fff;
}
.features .nav-link:hover {
  color: var(--e-global-color-primary);
}
.features .nav-link.active:hover {
  color: #fff;
}
.features .tab-content {
    margin-top: 30px;
}

/* Pricing Card Styling */
.pricing-card {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-card.popular {
    background: var(--e-global-color-primary);
    color: #fff;
}
.popular .popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ffc107;
    color: #333;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
}
.pricing-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}
.pricing-card .price {
    margin-bottom: 20px;
}
.pricing-card .price .amount {
    font-size: 48px;
    font-weight: 700;
}
.popular .price {
  color: #fff;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
}
.pricing-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.pricing-card ul i {
    color: #059652;
    margin-right: 10px;
    font-size: 20px;
}
.popular .pricing-card ul i {
    color: #fff;
}
.popular .elementor-button {
  background-color: #fff !important;
  color: var(--e-global-color-primary) !important;
}

/* FAQ Styling */
.faq .faq-title {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
}
.faq .faq-arrow {
    color: #e0e7ff;
    position: absolute;
    bottom: 0;
    left: 20px;
}