/* ========== RESET & BASE STYLES ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; background-color: var(--page-bg); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* ========== COLOR VARIABLES (BRAND) ========== */
:root {
    /* Core brand greens */
    --brand-olive-light: #C6D4C1;
    --brand-olive: #A8C4A0;
    --brand-olive-accent: #A4D17B; /* Buttons / high-importance */

    /* Supporting blues */
    --brand-blue-light: #98BBD6;
    --brand-blue: #6483B2;

    /* Global tokens */
    --primary: var(--brand-olive-accent);
    --primary-dark: var(--brand-olive);
    --secondary: #1A1C21; /* Deep text / header color */
    --accent: var(--brand-blue);
    --page-bg: #F7F5F3;
    --light: #F7F5F3;
    --white: #ffffff;
    --text: #1A1C21;
    --text-light: #5C6168;
    --gradient: linear-gradient(135deg, var(--brand-olive-accent) 0%, var(--brand-olive) 100%);
}

/* Global typography helpers */
h1, h2, h3, h4, h5, h6,
.section-header h2,
.hero-content h1,
.frustrations-header h2,
.portfolio-section h2,
.faqs-section h2,
.stats-section .stat-number {
    font-family: 'Noto Serif', Georgia, 'Times New Roman', serif;
}

.subheading, .blog-post-meta, .blog-category, .btn-hero span {
    font-family: 'Tenor Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== TOP HEADER ========== */
.top-header { background: var(--secondary); color: var(--white); padding: 10px 0; font-size: 14px; }
.top-header-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.contact-info { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.contact-info a { margin-right: 15px; opacity: 0.9; }
.contact-info a:hover, .social-links a:hover { opacity: 1; color: var(--primary); }
.contact-info i, .social-links i { margin-right: 8px; }
.social-links { display: flex; gap: 15px; }
.social-links a { font-size: 16px; }

/* ========== MAIN HEADER ========== */
.main-header { 
    background: var(--white); 
    box-shadow: 0 2px 20px rgba(0,0,0,0.1); 
    padding: 18px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease-out;
}
.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--primary) 70%, transparent);
    opacity: 0.5;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo { 
    display: flex; 
    align-items: center;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.03);
}
.logo img { 
    height: 65px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.nav-menu { 
    display: flex; 
    gap: 40px; 
    align-items: center; 
}
.nav-menu li a { 
    font-weight: 600; 
    padding: 10px 0; 
    position: relative;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
.nav-menu li a:not(.btn-primary):not(.btn-schedule-header):hover { 
    color: var(--primary); 
}
.nav-menu li a:not(.btn-primary):not(.btn-schedule-header)::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    width: 0; 
    height: 2px; 
    background: var(--primary); 
    transition: width 0.3s ease; 
}
.nav-menu li a:not(.btn-primary):not(.btn-schedule-header):hover::after { 
    width: 100%; 
}
.nav-toggle { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
}
.nav-toggle span { 
    width: 28px; 
    height: 3px; 
    background: var(--secondary); 
    margin: 4px 0; 
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========== BUTTONS ========== */
.btn-primary { 
    background: var(--gradient); 
    color: var(--white); 
    padding: 12px 30px; 
    border-radius: 50px; 
    font-weight: 700; 
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    border-color: var(--primary-dark);
}
.nav-menu .btn-primary {
    padding: 12px 32px;
    margin-left: 10px;
}
.btn-hero { 
    background: var(--gradient); 
    color: var(--white); 
    padding: 18px 50px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 19px; 
    display: inline-block; 
    box-shadow: 0 10px 35px rgba(212,175,55,0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}
.btn-hero:hover { 
    transform: translateY(-3px) scale(1.05); 
    box-shadow: 0 15px 45px rgba(212,175,55,0.6);
    border-color: rgba(255,255,255,0.6);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 35px rgba(212,175,55,0.4); }
    50% { box-shadow: 0 10px 45px rgba(212,175,55,0.6); }
}
.btn-submit { 
    background: var(--gradient);
    color: var(--white);
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    position: relative;
    overflow: hidden;
    min-height: 62px;
}
.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}
.btn-submit:hover { 
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 45px rgba(212,175,55,0.5);
}
.btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}
.btn-submit i {
    font-size: 20px;
    position: relative;
    z-index: 1;
}
.btn-submit span {
    position: relative;
    z-index: 1;
}

/* ========== HERO SECTION ========== */
.hero-section { 
    position: relative; 
    height: 75vh; 
    min-height: 550px;
    max-height: 700px;
    overflow: hidden;
}
.hero-slider { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
}
.hero-slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    opacity: 0; 
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}
.hero-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}
.hero-slide.active { 
    opacity: 1; 
    z-index: 1; 
}
.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(22,33,62,0.75) 50%, rgba(26,26,46,0.85) 100%); 
    z-index: 2;
}
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.15) 0%, transparent 50%);
    z-index: 1;
}
.hero-content { 
    max-width: 750px;
    padding: 0 20px;
}
.hero-content h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 62px; 
    font-weight: 900; 
    color: var(--white); 
    margin-bottom: 25px; 
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}
.hero-content p { 
    font-size: 22px; 
    color: rgba(255,255,255,0.95); 
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-controls { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 4; 
    display: flex; 
    justify-content: space-between; 
    padding: 0 30px;
    pointer-events: none;
}
.hero-controls button { 
    background: rgba(255,255,255,0.15); 
    border: 2px solid rgba(255,255,255,0.8); 
    color: var(--white); 
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    cursor: pointer; 
    backdrop-filter: blur(10px); 
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 18px;
}
.hero-controls button:hover { 
    background: var(--primary); 
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}
.hero-dots { 
    position: absolute; 
    bottom: 40px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 4; 
    display: flex; 
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}
.hero-dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.4); 
    cursor: pointer; 
    transition: all 0.4s ease;
    border: 2px solid transparent;
}
.hero-dot:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.2);
}
.hero-dot.active { 
    background: var(--primary); 
    width: 35px; 
    border-radius: 8px;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(212,175,55,0.6);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeInUp 0.8s ease-out; }
.animate-fade-in-delay { animation: fadeInUp 0.8s ease-out 0.2s both; }
.animate-fade-in-delay-2 { animation: fadeInUp 0.8s ease-out 0.4s both; }

/* ========== STATS SECTION ========== */
.stats-section { 
    background: linear-gradient(135deg, var(--secondary) 0%, #0f1626 100%);
    color: var(--white); 
    padding: 80px 0; 
    position: relative; 
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212,175,55,0.08) 0%, transparent 50%);
    z-index: 0;
}
.stats-section .container {
    position: relative;
    z-index: 1;
}
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    text-align: center; 
}
.stat-item {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.6s ease;
}
.stat-item:hover::before {
    left: 100%;
}
.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(212,175,55,0.05);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 30px rgba(212,175,55,0.2);
}
.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(212,175,55,0.3));
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.stat-number { 
    font-size: 64px; 
    font-weight: 900; 
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 1;
    display: inline-block;
    text-shadow: 0 0 30px rgba(212,175,55,0.5);
}
.stat-plus {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    display: inline-block;
    margin-left: 5px;
    vertical-align: top;
    margin-top: -5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stat-item.counted .stat-plus {
    opacity: 1;
}
.stat-label { 
    font-size: 16px; 
    opacity: 0.9;
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.8);
}

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: var(--secondary); margin-bottom: 15px; }
.section-header p { font-size: 18px; color: var(--text-light); }

/* ========== SERVICES SECTION ========== */
.services-section { 
    padding: 120px 0; 
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative; 
    z-index: 10;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,26,46,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.services-section .container {
    position: relative;
    z-index: 1;
}
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 35px; 
}
.service-card { 
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(164,209,123,0.25);
}
.service-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 4px; 
    background: var(--gradient); 
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.15),
        0 5px 15px rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.3);
}
.service-card:hover::before { 
    transform: scaleX(1); 
}
.service-card:hover::after {
    opacity: 1;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(212,175,55,0.4);
}
.service-icon { 
    width: 90px; 
    height: 90px; 
    background: var(--gradient);
    border-radius: 20px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 28px; 
    font-size: 38px; 
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
    position: relative;
}
.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-card:hover .service-icon::before {
    opacity: 0.6;
}
.service-card h3 { 
    font-size: 26px; 
    margin-bottom: 18px; 
    color: var(--secondary);
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}
.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.service-card:hover h3::after {
    width: 80px;
}
.service-card p { 
    color: var(--text-light); 
    margin-bottom: 25px; 
    line-height: 1.8;
    font-size: 15px;
}
.service-card ul {
    margin-top: 20px;
}
.service-card ul li { 
    color: var(--text); 
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}
.service-card ul li::before { 
    content: '✓'; 
    position: absolute; 
    left: 0; 
    color: var(--primary);
    font-weight: bold;
    width: 22px;
    height: 22px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}
.service-card:hover ul li::before {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.2);
}
.service-card ul li:hover {
    padding-left: 36px;
    color: var(--secondary);
}

/* ========== WHY US SECTION ========== */
.why-us-section { 
    padding: 120px 0; 
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}
.why-us-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.why-us-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.why-us-section .section-header h2 {
    color: var(--white);
}
.why-us-section .section-header p {
    color: rgba(255,255,255,0.8);
}
.why-us-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
    position: relative;
    z-index: 1;
}
.why-item { 
    display: flex; 
    gap: 25px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.why-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.why-item:hover::before {
    opacity: 1;
}
.why-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.why-icon { 
    width: 80px; 
    height: 80px; 
    background: var(--gradient);
    border-radius: 20px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 32px; 
    color: var(--white); 
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    position: relative;
    z-index: 1;
}
.why-item:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(212,175,55,0.5);
}
.why-content {
    flex: 1;
}
.why-item h3 { 
    font-size: 24px; 
    margin-bottom: 12px; 
    color: var(--white);
    font-weight: 700;
}
.why-item p { 
    color: rgba(255,255,255,0.8); 
    line-height: 1.8;
    font-size: 15px;
}

/* ========== FRUSTRATIONS INTO SOLUTIONS SECTION ========== */
.frustrations-section {
    padding: 100px 0;
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
}

.frustrations-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.frustrations-header {
    text-align: center;
    margin-bottom: 60px;
}

.frustrations-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.frustrations-word {
    color: var(--white);
    position: relative;
}

.solutions-word {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.frustrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Frustrations Column */
.frustrations-col {
    background: rgba(255,255,255,0.05);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.frustrations-col:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.frustrations-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.frustrations-title .emoji {
    font-size: 40px;
}

.frustrations-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--white);
    margin: 0;
    font-weight: 700;
}

.frustrations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.frustration-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.frustration-item:hover {
    background: rgba(0,0,0,0.5);
    transform: translateX(5px);
}

.frustration-item i {
    font-size: 24px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
    flex-shrink: 0;
}

.frustration-item p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Solutions Column */
.solutions-col {
    background: var(--gradient);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(212,175,55,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solutions-col::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.solutions-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(212,175,55,0.4);
}

.solutions-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.solutions-title .emoji {
    font-size: 40px;
}

.solutions-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--secondary);
    margin: 0;
    font-weight: 700;
    flex: 1;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.solution-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(5px);
}

.solution-item i {
    font-size: 24px;
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.solution-item p {
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ========== TEAM SECTION ========== */
.team-section { padding: 100px 0; background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-member { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.4s ease; }
.team-member:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.team-image { position: relative; overflow: hidden; height: 350px; }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-member:hover .team-image img { transform: scale(1.1); }
.team-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(212,175,55,0.9); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; }
.team-member:hover .team-overlay { opacity: 1; }
.team-social { display: flex; gap: 15px; }
.team-social a { width: 45px; height: 45px; background: var(--white); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.team-social a:hover { background: var(--secondary); color: var(--white); }
.team-info { padding: 30px; text-align: center; }
.team-info h3 { font-size: 24px; margin-bottom: 5px; color: var(--secondary); }
.team-role { color: var(--primary); font-weight: 600; margin-bottom: 15px; }
.team-bio { color: var(--text-light); line-height: 1.7; }

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section { 
    padding: 120px 0; 
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,26,46,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.testimonials-slider { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 35px;
    position: relative;
    z-index: 1;
}
.testimonial-card { 
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.06),
        0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid rgba(212,175,55,0.1);
    overflow: hidden;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: 'Playfair Display', serif;
    color: rgba(212,175,55,0.08);
    line-height: 1;
    z-index: 0;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.12),
        0 5px 15px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.3);
}
.testimonial-card:hover::after {
    transform: scaleX(1);
}
.stars { 
    color: var(--primary); 
    margin-bottom: 25px; 
    font-size: 20px;
    display: flex;
    gap: 5px;
    position: relative;
    z-index: 1;
}
.stars i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212,175,55,0.3));
}
.testimonial-card:hover .stars i {
    transform: scale(1.15) rotate(5deg);
}
.testimonial-card:hover .stars i:nth-child(1) { transition-delay: 0s; }
.testimonial-card:hover .stars i:nth-child(2) { transition-delay: 0.05s; }
.testimonial-card:hover .stars i:nth-child(3) { transition-delay: 0.1s; }
.testimonial-card:hover .stars i:nth-child(4) { transition-delay: 0.15s; }
.testimonial-card:hover .stars i:nth-child(5) { transition-delay: 0.2s; }
.testimonial-text { 
    color: var(--text); 
    font-style: italic; 
    line-height: 1.9; 
    margin-bottom: 30px; 
    font-size: 16px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.testimonial-author { 
    display: flex; 
    gap: 18px; 
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid rgba(212,175,55,0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.testimonial-card:hover .testimonial-author {
    padding-top: 30px;
}
.testimonial-author img { 
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    object-fit: cover;
    border: 3px solid rgba(212,175,55,0.3);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.testimonial-card:hover .testimonial-author img {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}
.testimonial-author-info {
    flex: 1;
}
.testimonial-author h4 { 
    font-size: 18px; 
    color: var(--secondary); 
    margin-bottom: 5px;
    font-weight: 700;
    transition: color 0.3s ease;
}
.testimonial-card:hover .testimonial-author h4 {
    color: var(--primary);
}
.testimonial-author p { 
    font-size: 14px; 
    color: var(--text-light);
    line-height: 1.4;
}

/* ========== PRICING SECTION ========== */
.pricing-section { 
    padding: 120px 0; 
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.pricing-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,26,46,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.pricing-calculator { 
    max-width: 900px; 
    margin: 0 auto; 
    background: var(--white); 
    padding: 60px;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(212,175,55,0.1);
    position: relative;
    z-index: 1;
}
.pricing-form { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}
.form-row { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
}
.form-group { 
    display: flex; 
    flex-direction: column;
    position: relative;
}
.form-group label { 
    font-weight: 700; 
    margin-bottom: 12px; 
    color: var(--secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.form-group label::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}
.form-group input, 
.form-group select, 
.form-group textarea { 
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text);
    height: 56px; /* Fixed height for consistency */
    line-height: 1.5;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 50px;
    cursor: pointer;
}
.form-group textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding-top: 16px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
    opacity: 1;
}
.form-group input:hover, 
.form-group select:hover, 
.form-group textarea:hover { 
    border-color: rgba(164,209,123,0.7);
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus { 
    outline: none; 
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(164,209,123,0.25);
    transform: translateY(-2px);
}
.form-group.full-width { 
    grid-column: 1 / -1; 
}
.pricing-divider { 
    text-align: center; 
    margin: 35px 0; 
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.pricing-divider::before,
.pricing-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}
.pricing-divider span { 
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
    padding: 12px 30px;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid rgba(212,175,55,0.2);
    white-space: nowrap;
}
.pricing-result { margin-top: 40px; display: none; }
.pricing-result.show { display: block; animation: fadeInUp 0.6s ease-out; }
.pricing-result-content { text-align: center; padding: 40px; background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(184,150,45,0.1) 100%); border-radius: 15px; border: 2px solid var(--primary); }
.pricing-result-content i { font-size: 60px; color: var(--primary); margin-bottom: 20px; }
.pricing-result-content h3 { font-size: 28px; margin-bottom: 25px; color: var(--secondary); }
.price-display { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 20px; }
.currency { font-size: 36px; color: var(--primary); font-weight: 700; margin-right: 5px; }
.amount { font-size: 72px; color: var(--secondary); font-weight: 900; line-height: 1; }
.period { font-size: 24px; color: var(--text-light); align-self: flex-end; margin-left: 5px; margin-bottom: 10px; }
.price-note { color: var(--text-light); font-size: 14px; margin-bottom: 30px; }
.included-services { text-align: left; max-width: 500px; margin: 0 auto 30px; }
.included-services h4 { font-size: 18px; margin-bottom: 15px; color: var(--secondary); }
.included-services ul li { padding: 10px 0; padding-left: 30px; position: relative; color: var(--text); }
.included-services ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; font-size: 18px; }
.success-message { background: rgba(76,175,80,0.1); color: #2e7d32; padding: 15px; border-radius: 10px; font-weight: 600; }

/* ========== SCHEDULE INTRO CALL BUTTON (Header Specific) ========== */
.btn-schedule-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(164,209,123,0.35) !important;
    border: 2px solid rgba(164,209,123,0.6) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.btn-schedule-header:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(100,131,178,0.45) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.btn-schedule-header i {
    font-size: 14px !important;
    color: #ffffff !important;
}

/* ========== SCHEDULE INTRO CALL BUTTON (Other Pages) ========== */
.btn-schedule {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(164,209,123,0.35);
    border: 2px solid rgba(164,209,123,0.6);
    white-space: nowrap;
}

.btn-schedule:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100,131,178,0.45);
    color: var(--white);
    text-decoration: none;
}

.btn-schedule i {
    font-size: 15px;
    color: var(--white);
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
    padding: 120px 0;
    background: var(--light);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.portfolio-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,46,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.portfolio-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    font-size: 15px;
}

.portfolio-result {
    display: inline-block;
    background: var(--gradient);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.portfolio-logo {
    padding: 20px;
    background: var(--white);
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary);
}

.portfolio-cta {
    text-align: center;
    padding: 50px 20px;
    background: rgba(26,26,46,0.03);
    border-radius: 20px;
}

.portfolio-cta p {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 600;
}

/* ========== FAQs SECTION ========== */
.faqs-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.faqs-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.faqs-section .section-header h2 {
    color: var(--white);
}

.faqs-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.gold-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.04);
    border: 2px solid var(--primary);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-dark);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--gradient);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-size: 16px;
}

/* ========== BLOG SECTION ========== */
.blog-section { 
    padding: 120px 0; 
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}
.blog-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,26,46,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 35px;
    position: relative;
    z-index: 1;
}
.blog-card { 
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212,175,55,0.1);
    position: relative;
}
.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.15),
        0 5px 15px rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.3);
}
.blog-card:hover::after {
    transform: scaleX(1);
}
.blog-image { 
    position: relative;
    height: 280px;
    overflow: hidden;
}
.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.blog-card:hover .blog-image::before {
    opacity: 1;
}
.blog-image img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.15) rotate(2deg);
}
.blog-category { 
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
    z-index: 2;
    transition: all 0.3s ease;
}
.blog-card:hover .blog-category {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(212,175,55,0.6);
}
.blog-content { 
    padding: 35px;
    position: relative;
}
.blog-content h3 { 
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
    line-height: 1.4;
    font-weight: 800;
    transition: color 0.3s ease;
}
.blog-card:hover .blog-content h3 {
    color: var(--primary);
}
.blog-content p { 
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}
.read-more { 
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}
.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.blog-card:hover .read-more::after {
    width: 100%;
}
.read-more:hover {
    gap: 15px;
    color: var(--primary-dark);
}
.read-more i {
    transition: transform 0.3s ease;
}
.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* ========== CTA SECTION ========== */
.cta-section { padding: 100px 0; background: var(--secondary); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%); }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: 42px; margin-bottom: 20px; }
.cta-content p { font-size: 20px; margin-bottom: 40px; opacity: 0.9; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; }
.btn-cta-primary { background: var(--primary); color: var(--white); padding: 18px 45px; border-radius: 50px; font-weight: 700; font-size: 18px; }
.btn-cta-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212,175,55,0.3); }
.btn-cta-secondary { background: transparent; color: var(--white); padding: 18px 45px; border-radius: 50px; font-weight: 700; font-size: 18px; border: 2px solid var(--white); }
.btn-cta-secondary:hover { background: var(--white); color: var(--secondary); }

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 10px 0;
    transition: all 0.3s ease;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Makes the logo white */
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    padding: 12px 0;
    font-size: 15px;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 18px;
    width: 25px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 35px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    background: rgba(0,0,0,0.2);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #e5c76b;
    text-decoration: underline;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: none; z-index: 999; transition: all 0.3s ease; box-shadow: 0 5px 20px rgba(0,0,0,0.3); }
.scroll-top.show { display: flex; align-items: center; justify-content: center; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-5px); }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .services-section { padding: 100px 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .service-card { padding: 40px 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .testimonial-card { padding: 40px 30px; }
    .blog-section { padding: 100px 0; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .blog-card { border-radius: 18px; }
    .blog-image { height: 240px; }
    .blog-content { padding: 30px; }
    .blog-content h3 { font-size: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; z-index: 1002; position: relative; }
    .nav-menu { position: fixed; top: 95px; left: -100%; width: 100%; background: var(--white); flex-direction: column; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: left 0.3s ease; gap: 20px; max-height: calc(100vh - 95px); overflow-y: auto; z-index: 999; }
    .nav-menu.active { left: 0; }
    .nav-menu .btn-primary { margin-left: 0; width: 100%; text-align: center; }
    .nav-menu .btn-schedule-header { margin-left: 0 !important; width: 100% !important; text-align: center !important; justify-content: center !important; padding: 14px 30px !important; font-size: 15px !important; }
    .logo { z-index: 1002; position: relative; }
    .logo img { height: 55px; }
    .main-header { padding: 12px 0; position: sticky; z-index: 1001; }
    .navbar { position: relative; z-index: 1002; }
    .hero-controls { display: none !important; }
    .hero-prev, .hero-next { display: none !important; }
    .hero-section { height: auto; min-height: 500px; max-height: none; padding: 80px 0; }
    .hero-content { padding: 0 20px; max-width: 100%; }
    .hero-content h1 { font-size: 32px; line-height: 1.3; margin-bottom: 20px; word-wrap: break-word; }
    .hero-content p { font-size: 17px; margin-bottom: 30px; line-height: 1.6; }
    .btn-hero { padding: 15px 35px; font-size: 17px; }
    .hero-dots { bottom: 25px; padding: 8px 15px; gap: 8px; }
    .section-header h2 { font-size: 32px; }
    .services-section { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 25px; }
    .service-card { padding: 35px 25px; }
    .service-icon { width: 75px; height: 75px; font-size: 32px; }
    .service-card h3 { font-size: 22px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .blog-section { padding: 80px 0; }
    .blog-grid { grid-template-columns: 1fr; gap: 25px; }
    .blog-card { border-radius: 16px; }
    .blog-image { height: 220px; }
    .blog-content { padding: 25px; }
    .blog-content h3 { font-size: 19px; }
    .blog-category { font-size: 11px; padding: 6px 16px; }
    .testimonials-section { padding: 80px 0; }
    .testimonials-slider { grid-template-columns: 1fr; gap: 25px; }
    .testimonial-card { padding: 35px 25px; }
    .testimonial-card::before { font-size: 80px; top: 15px; left: 20px; }
    .stars { font-size: 18px; }
    .testimonial-author img { width: 60px; height: 60px; }
    .testimonial-author h4 { font-size: 16px; }
    .team-grid { grid-template-columns: 1fr; }
    .stats-section { padding: 60px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { padding: 30px 15px; }
    .stat-icon { font-size: 36px; margin-bottom: 10px; }
    .stat-number { font-size: 48px; }
    .stat-plus { font-size: 36px; }
    .stat-label { font-size: 14px; margin-top: 10px; }
    .pricing-section { padding: 80px 0; }
    .pricing-calculator { padding: 40px 30px; border-radius: 20px; }
    .form-row { grid-template-columns: 1fr; gap: 25px; }
    .form-group label { font-size: 14px; }
    .form-group input, .form-group select { height: 52px; padding: 14px 18px; }
    .pricing-divider { margin: 30px 0; gap: 15px; }
    .pricing-divider span { padding: 10px 20px; font-size: 14px; }
    .cta-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .pricing-calculator { padding: 30px 20px; }
    .top-header { 
        padding: 18px 0; 
        font-size: 13px; 
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        position: relative;
    }
    .top-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        opacity: 0.6;
    }
    .top-header-content { flex-direction: column; gap: 15px; text-align: center; }
    .contact-info { 
        justify-content: center; 
        gap: 20px;
        flex-wrap: wrap;
    }
    .contact-info a { 
        margin-right: 0;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .contact-info a:hover {
        color: var(--primary);
        transform: translateY(-2px);
    }
    .contact-info i {
        color: var(--primary);
        font-size: 16px;
    }
    .social-links { 
        justify-content: center; 
        gap: 20px;
        padding-top: 15px;
        margin-top: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .social-links a { 
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(212,175,55,0.3);
        border-radius: 50%;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    .social-links a i {
        margin: 0 !important;
        text-align: center;
    }
    .social-links a:hover {
        background: var(--gradient);
        border-color: var(--primary);
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 15px rgba(212,175,55,0.4);
    }
    .frustrations-section { padding: 60px 0; }
    .frustrations-header h2 { font-size: 32px; }
    .frustrations-grid { grid-template-columns: 1fr; gap: 25px; }
    .frustrations-col, .solutions-col { padding: 30px 20px; }
    .frustrations-title h3, .solutions-title h3 { font-size: 22px; }
    .frustrations-title .emoji, .solutions-title .emoji { font-size: 32px; }
    .frustration-item, .solution-item { padding: 15px; }
    .frustration-item p, .solution-item p { font-size: 15px; }
    .portfolio-section { padding: 80px 0; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 25px; }
    .portfolio-image { height: 240px; }
    .portfolio-cta p { font-size: 18px; }
    .faqs-section { padding: 80px 0; }
    .faq-question span { font-size: 17px; }
    .faq-question i { width: 35px; height: 35px; font-size: 16px; }
    .faq-answer p { font-size: 15px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 52px; }
    .stat-plus { font-size: 40px; }
    .stat-icon { font-size: 40px; }
    .amount { font-size: 52px; }
}
