/* ===== TRUZIE REAL ESTATE WEBSITE STYLES ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
    min-width: 320px;
    max-width: 100vw;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a2332;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Color Variables */
:root {
    /* Primary Color Scheme */
    --primary-color: #111184;
    --secondary-color: #0d0e6b;
    --accent-color: #151452;
    
    /* Extended Blue Palette */
    --primary-blue: #111184;
    --primary-blue-dark: #0d0e6b;
    --primary-blue-light: #1a1aa0;
    --secondary-blue: #0d0e6b;
    --accent-blue: #151452;
    --light-blue: #e8e9ff;
    
    /* Text Colors */
    --text-dark: #2C3E50;
    --text-gray: #5a6c7d;
    --text-light: #7F8C8D;
    
    /* Background Colors */
    --background-gray: #F8FAFF;
    --background-light: #F0F7FF;
    --white: #ffffff;
    
    /* Border Colors */
    --border-light: #E8F2FF;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    
    /* Luxury Colors */
    --luxury-gold: #d4af37;
    --luxury-gold-light: #f4d03f;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent any element from exceeding viewport width */
* {
    max-width: 100%;
    box-sizing: border-box;
}

img, svg, video, canvas, audio, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Section Styling */
section {
    padding: 60px 0;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Override for specific about sections */
section.about-content {
    padding: 4rem 0 !important;
}

section.our-story-section {
    padding: 4rem 0 !important;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-blue);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
    min-width: 60px;
    height: 70px;
}

.logo-img {
    height: 65px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: min(280px, 90vw);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: var(--light-blue);
    color: var(--primary-blue);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 140px 0 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    position: relative;
    overflow: visible;
    display: block;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: min(600px, 150vw);
    height: min(600px, 150vw);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    max-width: 100vw;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.hero-badge i {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-description strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--text-gray);
    border: 2px solid var(--border-light);
}

.highlight-box i {
    color: var(--primary-blue);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Hero Stats */
.hero-stats {
    background: var(--white) !important;
    margin: 40px auto !important;
    max-width: 1000px;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    clear: both;
    border: 2px solid var(--primary-color);
    min-height: 150px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: 100px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.2;
}

/* Who We Are Section */
.who-we-are {
    padding: 6rem 0;
}

.mission-statement {
    margin: 4rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.tagline-highlight {
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    margin-top: 2rem;
}

.tagline-highlight h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.tagline-highlight p {
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

.mission-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.core-divisions {
    text-align: center;
    margin-top: 4rem;
}

.core-divisions h3 {
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.division-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.division-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.division-icon i {
    font-size: 2rem;
    color: var(--white);
}

.division-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.division-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.exclusive-note {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.division-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
}

.division-btn:hover {
    background: var(--accent-blue);
    transform: translateX(5px);
    color: var(--white);
}

.division-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.division-btn:hover i {
    transform: translateX(3px);
}

/* Enhanced Service Cards */
.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.service-badge.luxury {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: var(--text-dark);
}

.service-badge.superhost {
    background: linear-gradient(135deg, var(--success), #10b981);
}

.service-badge.training {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.luxury-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.brand-tag {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--background-light) 100%);
    display: block;
    visibility: visible;
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-light);
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
    overflow: visible;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    display: block;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
}

.service-tagline {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: block;
}

.service-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    display: block;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.service-features i {
    color: var(--success);
    font-size: 14px;
    flex-shrink: 0;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.service-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.location {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 6rem 0;
}

/* About Section - Legacy (removed conflicting styles) */

.about-text {
    padding: 2rem 0;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-gray);
    border-radius: 8px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--background-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.contact-item div strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-brand p {
    color: #94a3b8;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Hero Sections */
.service-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.service-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-hero h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--text-gray);
}

.highlight i {
    color: var(--primary-blue);
}

/* Training Specific Styles */
.training-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.training-hero h1,
.training-hero h2,
.training-hero p {
    color: var(--white);
}

.trainer-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
}

.credential i {
    color: var(--accent-blue);
}

/* Service Page Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-section {
    margin-bottom: 4rem;
}

.services-overview,
.what-we-do {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

/* Tabs */
.services-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.875rem 2rem;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-gray);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

/* Location Cards */
.locations-section {
    padding: 6rem 0;
    background: var(--background-gray);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.location-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
}

.location-details {
    padding: 1.5rem;
}

.location-details ul {
    list-style: none;
    margin: 1rem 0;
}

.location-details li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.location-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.location-stats span {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-blue-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--background-gray);
}

.faq-grid,
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--background-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Special Page Sections */
.contact-section {
    padding: 6rem 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    margin-bottom: 1rem;
}

.contact-form-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}

.contact-details {
    margin-left: 1rem;
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    margin-bottom: 1rem;
}

.social-links .social-link.facebook { background: #1877f2; }
.social-links .social-link.instagram { background: #e4405f; }
.social-links .social-link.linkedin { background: #0077b5; }
.social-links .social-link.twitter { background: #1da1f2; }
.social-links .social-link.youtube { background: #ff0000; }

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

/* Training Specific Styles */
.trainer-profile {
    padding: 6rem 0;
    background: var(--background-gray);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.profile-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.achievement-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.achievement-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

blockquote {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    font-style: italic;
    margin: 2rem 0;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Program Cards */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
}

.program-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.program-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.program-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.program-level {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

.program-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.program-content ul {
    list-style: none;
    margin: 1rem 0;
}

.program-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.program-content i {
    color: var(--success);
    font-size: 0.9rem;
}

.program-outcome {
    background: var(--background-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Success Stories */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.success-story {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.trainee-info h4 {
    margin-bottom: 0.25rem;
}

.trainee-info span {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.transformation-stats {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--background-gray);
    border-radius: 8px;
}

.stat strong {
    color: var(--text-dark);
    display: block;
    font-size: 0.9rem;
}

.stat span {
    color: var(--primary-blue);
    font-weight: 600;
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.achievements span {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Training Schedule */
.training-schedule {
    padding: 6rem 0;
    background: var(--background-gray);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.schedule-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.session-details {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--background-gray);
    border-radius: 8px;
}

.detail-item i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.detail-item div strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.booking-benefits {
    margin-top: 2rem;
}

.booking-benefits ul {
    list-style: none;
    margin-top: 1rem;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.booking-benefits i {
    color: var(--success);
}

.booking-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--border-light);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Playfair Display', serif;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.pricing-features i {
    color: var(--success);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    color: var(--text-dark);
}

.client-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Service Locations Display */
.service-locations-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.location-tag {
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    border: 2px solid var(--primary-blue);
    font-size: 0.9rem;
}

/* Additional Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Navigation */
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 140px;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.show {
        left: 0;
    }
    
    .nav-item {
        margin: 5px 0;
        width: 90%;
        text-align: center;
    }
    
    .nav-link {
        padding: 15px;
        font-size: 18px;
        border-bottom: 1px solid #f0f7ff;
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
        color: var(--text-dark);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-blue);
    }
    
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        padding: 5px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8faff;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        width: 100%;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8faff;
        margin: 10px 0;
        border-radius: 8px;
        width: 100%;
    }
    
    .dropdown-link {
        padding: 12px 20px;
        border-bottom: 1px solid #e8f2ff;
        margin: 0;
        border-radius: 0;
        font-size: 16px;
        color: var(--text-gray);
    }
    
    .dropdown-link:hover,
    .dropdown-link.active {
        background: var(--light-blue);
        color: var(--primary-blue);
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .highlight-box {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Core Divisions */
    .core-divisions {
        padding: 3rem 0;
    }
    
    .core-divisions h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .division-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .division-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .division-icon i {
        font-size: 1.5rem;
    }
    
    .division-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .division-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .division-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 15px;
        margin-top: 40px;
        position: relative;
        z-index: 100;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Mission Statement */
    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Core Divisions */
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .division-card {
        padding: 20px 15px;
    }
    
    .division-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Contact Section */
    .quick-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Service Hero */
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    /* Grids */
    .contact-grid,
    .content-grid,
    .tab-grid,
    .profile-content,
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tab Buttons */
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Stats */
    .hero-stats {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Cards */
    .service-card,
    .program-card {
        padding: 2rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    /* CTA Buttons */
    .hero-buttons,
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    /* Navigation */
    .nav-container {
        padding: 0.5rem 0.75rem;
        min-width: 0;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .brand-logo {
        font-size: 0.9rem;
        white-space: nowrap;
        max-width: calc(100vw - 80px);
        overflow: hidden;
        min-width: 45px;
        height: 50px;
    }
    
    .logo-img {
        height: 55px;
        width: auto;
        max-width: 140px;
    }
    
    .nav-menu {
        padding-top: 80px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        display: block;
        background: #f8faff;
        box-shadow: none;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .dropdown-link {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 30px;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-highlights {
        gap: 0.75rem;
        margin: 1.5rem 0;
        flex-direction: column;
    }
    
    .highlight-box {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        width: 100%;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-top: 1.5rem;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        padding: 1rem 2rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    /* Core Divisions */
    .core-divisions {
        padding: 2.5rem 0;
    }
    
    .core-divisions h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .division-card {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .division-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .division-icon i {
        font-size: 1.25rem;
    }
    
    .division-card h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .division-card p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .division-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
        margin-top: auto;
    }
    
    /* Stats */
    .hero-stats {
        grid-template-columns: 1fr;
        padding: 20px 10px;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* Services */
    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .division-card {
        padding: 20px 15px;
    }
    
    .division-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Cards */
    .service-card,
    .program-card,
    .contact-form,
    .booking-form {
        padding: 20px 15px;
    }
    
    /* Forms */
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .social-links,
    .btn,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .page-header {
        background: none;
        color: #000;
        padding: 2rem 0;
    }
}

/* Luxury Brand Collaborations Styling */
.luxury-hero {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3b4e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.luxury-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: luxuryFloat 8s ease-in-out infinite;
}

.luxury-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.luxury-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.luxury-highlight i {
    color: #d4af37;
    font-size: 18px;
}

.luxury-highlight span {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

/* Brand Partners Section */
.brand-partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e8f2ff;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f  100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

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

.partner-logo {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
}

.brand-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.versace-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.cavalli-icon {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
}

.more-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.partner-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.partner-description {
    padding: 0 40px 40px;
}

.partner-description h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.brand-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.brand-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Luxury Service Items */
.luxury-service {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) border-box;
    position: relative;
    overflow: hidden;
}

.luxury-service::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.luxury-service:hover::before {
    transform: scale(1);
}

/* Collaboration Process Timeline */
.collaboration-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f1419;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: luxuryPulse 2s ease-in-out infinite;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #d4af37;
}

/* Benefits Grid */
.collaboration-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e8f2ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scale(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

/* Success Stories */
.collaboration-success {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.success-story {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.story-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.brand-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #0f1419;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.cavalli-badge {
    background: rgba(139, 69, 19, 0.9);
    color: white;
}

.story-content {
    padding: 30px;
}

.project-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
    border-radius: 10px;
    flex: 1;
    min-width: 100px;
}

.stat strong {
    display: block;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.stat span {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 500;
}

/* Luxury Animations */
@keyframes luxuryFloat {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

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

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
    min-height: 500px;
}

.founder-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.founder-photo {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), #d4af37);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.7;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.founder-photo i {
    font-size: 120px;
    color: white;
    opacity: 0.3;
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-badge i {
    color: #d4af37;
    font-size: 16px;
}

.founder-badge span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.founder-details {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.founder-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.founder-intro h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.founder-title {
    font-size: 18px;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-story p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.founder-achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
    border-radius: 12px;
    border: 1px solid #e8f2ff;
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
    border-color: var(--primary-color);
}

.achievement i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.achievement span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.founder-quote {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    margin: 30px 0 0;
    position: relative;
    border-left: 4px solid #d4af37;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #d4af37;
    font-family: serif;
    line-height: 1;
}

.founder-contact h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e8f2ff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
    border-color: var(--primary-color);
}

.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item .label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.contact-item .value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
}

/* Enhanced Footer */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .founder-photo {
        width: 280px;
        height: 350px;
        margin: 0 auto;
    }
    
    .founder-intro h2 {
        font-size: 28px;
    }
    
    .founder-intro h3 {
        font-size: 24px;
    }
    
    .founder-achievements {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .achievement {
        justify-content: center;
    }
    
    .founder-quote {
        padding: 20px;
        font-size: 14px;
        margin: 20px 0 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 60px 0;
    }
    
    .founder-photo {
        width: min(90vw, 320px);
        height: auto;
        min-height: 400px;
        aspect-ratio: 4/5;
    }
    
    .founder-intro h2 {
        font-size: 24px;
    }
    
    .founder-intro h3 {
        font-size: 20px;
    }
    
    .achievement {
        padding: 12px 15px;
    }
    
    .achievement span {
        font-size: 13px;
    }
}

/* Form Validation Styles */
.field-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

/* Scroll Animations */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card,
.program-card,
.stat-item,
.process-step,
.benefit-card,
.partner-card,
.success-story {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* Navigation Scroll Effect */
.header.scrolled {
    background: var(--primary-blue);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header.scrolled .nav-link {
    color: white;
}

.header.scrolled .brand-logo {
    color: white;
}

/* Mobile Navigation Override - Keep dark colors in mobile menu */
@media (max-width: 768px) {
    .header.scrolled .nav-menu .nav-link,
    .header .nav-menu .nav-link {
        color: var(--text-dark) !important;
    }
    
    .header.scrolled .nav-menu .nav-link:hover,
    .header.scrolled .nav-menu .nav-link.active,
    .header .nav-menu .nav-link:hover,
    .header .nav-menu .nav-link.active {
        color: var(--primary-blue) !important;
    }
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e8f2ff;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 10px;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: var(--primary-color);
    color: white;
}

/* Mobile Navigation */
.nav-menu {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.show {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
        width: 90%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8faff;
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        width: 25px;
        height: 20px;
        justify-content: space-between;
    }
    
    .bar {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Gallery Styles */
.property-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Loading Animations */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Enhanced Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced Service Card Hover */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scale(1);
}

/* Floating Labels for Forms */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8f2ff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-color);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .luxury-highlights {
        gap: 15px;
    }
    
    .luxury-highlight {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .partners-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* About Page Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0 !important;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.our-story-section {
    background: var(--white);
    position: relative;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.our-story-section .container {
    position: relative;
    z-index: 2;
}

.content-section {
    margin: 0;
    padding: 0;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.content-text {
    padding: 0;
    max-width: 100%;
}

.content-image {
    position: relative;
    width: 100%;
}

.content-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.content-text p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.image-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

.image-placeholder small {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.leader-placeholder {
    height: 350px;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

/* Mission & Vision */
.mission-vision {
    margin: 5rem 0;
    padding: 4rem 0;
    background: var(--background-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.mission-card p, .vision-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.leader-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.leader-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.leader-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.leader-content h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

.leader-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.leader-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.achievement {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--background-light);
    border-radius: 12px;
}

.achievement strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.achievement span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-blue);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: var(--background-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.reason-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reason-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.reason-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.reason-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.cta-content .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .about-content {
        padding: 2rem 0 !important;
    }
    
    .content-section {
        padding: 0;
        margin: 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0;
    }
    
    .content-text {
        padding: 0;
        text-align: left;
        order: 2;
    }
    
    .content-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .content-image {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .mission-vision {
        padding: 4rem 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2.5rem 2rem;
    }
    
    .leadership-section {
        padding: 4rem 0;
    }
    
    .leader-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .leader-placeholder {
        height: 250px;
    }
    
    .leader-achievements {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .achievement {
        padding: 1rem;
    }
    
    .values-section {
        padding: 4rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .why-choose-us {
        padding: 4rem 0;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reason-item {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card, .vision-card,
    .value-card, .reason-item {
        padding: 2rem 1.5rem;
    }
    
    .leader-profile {
        padding: 1.5rem;
    }
    
    .content-text h2,
    .section-title {
        font-size: 1.75rem;
    }
}

/* Extra Small Screens - Prevent Horizontal Overflow */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}