@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700;900&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0f172a;
    background: #FDFDFD;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.hero-content h1,
.section-title,
.accordion-title {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Fade In Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 1s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Pattern */
.hero-pattern {
    background-image: linear-gradient(to right, #F1F5F9 1px, transparent 1px), 
                      linear-gradient(to bottom, #F1F5F9 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
}

/* Top Bar */
.top-bar { background: #2563eb; padding: 10px 0; color: #fff; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.top-bar a { color: #fff; text-decoration: none; margin: 0 15px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.top-bar a:hover { color: #cbd5e1; }

/* Header */
header { 
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.7s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #f1f5f9;
    padding: 1rem 0;
}

.header-main { 
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-inner {
    width: 0.875rem;
    height: 0.875rem;
    background: #2563eb;
    transform: rotate(45deg);
}

.logo-accent { color: #2563eb; }

.logo-image {
    display: flex;
    align-items: center;
}

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

@media (max-width: 768px) {
    .logo-image img {
        max-height: 45px;
    }
}

nav ul { 
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a { 
    text-decoration: none;
    color: #94a3b8;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.3em;
    transition: 0.3s;
}

nav a:hover,
nav a.active { 
    color: #2563eb;
}

nav a.active {
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.25rem;
}

/* Buttons */
.btn-primary {
    background: #0f172a;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
}

.btn-secondary {
    background: #2563eb;
    color: white;
    padding: 1.5rem 3rem;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-secondary:hover {
    background: #0f172a;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid #334155;
    padding: 1.5rem 3rem;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #1e293b;
}

/* Service Card Interactions */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    border-color: #2563eb !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Grid Classes */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5rem; }
.brands-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-grid > div { order: 0 !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
    .brands-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Contact Photo Widget */
.contact-photo-frame {
    width: 100%;
    height: 500px;
    border: 3px solid #2563eb;
    padding: 1rem;
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.contact-photo-label {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-top: 3px solid #2563eb;
}

.contact-label-border {
    width: 60px;
    height: 3px;
    background: #2563eb;
    margin-bottom: 1rem;
}

.contact-label-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.1em;
}

/* Quick Contact Methods */
.quick-contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 2rem;
    color: #2563eb;
}

.contact-method span {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0f172a;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border: 2px solid #e2e8f0;
}

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

.contact-form label {
    display: block;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form textarea {
    resize: vertical;
}

.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #f0fdf4;
    border: 2px solid #10b981;
    color: #065f46;
}

.alert-error {
    background: #fef2f2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

@media (max-width: 768px) {
    .quick-contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-photo-frame {
        height: 400px;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* Hero Section */
.hero { 
    background: white;
    padding: 10rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-content h1 { 
    font-size: clamp(3.5rem, 10vw, 6.25rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: #0f172a;
    font-family: 'Playfair Display', Georgia, serif;
}

.text-gradient {
    background: linear-gradient(to right, #2563eb, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.5rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 3.5rem;
    max-width: 36rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-label-line {
    height: 1px;
    width: 3rem;
    background: #2563eb;
}

.hero-label-text {
    color: #2563eb;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

/* Stats Section */
.stats-section {
    background: #0f172a;
    padding: 10rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.stats-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: rgba(37, 99, 235, 0.1);
    filter: blur(150px);
    transform: translate(50%, -50%);
}

.stat-card {
    border-left: 1px solid #1e293b;
    padding-left: 2rem;
}

.stat-icon {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Testimonials */
.testimonial-box {
    background: #0f172a;
    color: white;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid #1e293b;
}

.testimonial-quote-bg {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3rem;
    opacity: 0.03;
    font-size: 16rem;
}

.testimonial-quote {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 300;
    line-height: 1.6;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 3rem;
    max-width: 64rem;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.testimonial-title {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #2563eb;
    margin-top: 0.25rem;
}

/* Footer */
footer { 
    background: white;
    padding: 6rem 1.5rem;
    border-top: 1px solid #f1f5f9;
}

footer .logo {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

footer p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 20rem;
}

.footer-links {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #0f172a;
    margin-bottom: 2rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: 0.3s;
    display: block;
    margin-bottom: 1rem;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #2563eb;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid #f8fafc;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.15em;
}

/* Mobile Menu */
.mobile-toggle { 
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { padding: 8rem 1.5rem 4rem; }
    .hero-content h1 { font-size: 3rem; }
    .stats-section { padding: 6rem 1.5rem; }
    
    .hero > div > div:first-child { grid-template-columns: 1fr; }
    .stats-section > div > div { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    nav { display: none; }
    .mobile-toggle { display: block; }
    nav.active { 
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f1f5f9;
        z-index: 1000;
    }
    nav.active ul { 
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .hero { padding: 6rem 1.5rem 3rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.125rem; }
    
    .top-bar .container { 
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .stat-number { font-size: 2.5rem; }
    .testimonial-box { padding: 2rem; }
    
    .stats-section > div > div { grid-template-columns: 1fr; gap: 3rem; }
    
    .hero > div > div:first-child { grid-template-columns: 1fr; gap: 3rem; }
    
    .hero > div > div:last-child { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    
    footer > div > div:first-child { flex-direction: column; gap: 2rem; }
    
    .btn-primary { padding: 0.75rem 1.5rem; }
    .btn-secondary { padding: 1rem 2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .btn-primary, .btn-secondary { padding: 1rem 1.5rem; font-size: 10px; }
    .stat-number { font-size: 2rem; }
    .testimonial-quote { font-size: 1.25rem; }
    
    .hero > div > div:last-child { grid-template-columns: 1fr; }
    
    .logo { font-size: 1.125rem; }
    .logo-icon { width: 1.75rem; height: 1.75rem; }
    .logo-icon-inner { width: 0.625rem; height: 0.625rem; }
}

/* About Page Styles */
.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #0f172a;
    color: white;
    margin-bottom: 4rem;
}

.compliance-badge i {
    font-size: 2rem;
    color: #2563eb;
}

.compliance-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
}

.compliance-value {
    font-size: 0.875rem;
    font-weight: 700;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    opacity: 0.3;
}

.partner-logo {
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.2em;
    font-size: 1.25rem;
    color: #0f172a;
}

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

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-point {
    display: flex;
    gap: 1.5rem;
}

.philosophy-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.philosophy-point p {
    color: #64748b;
    line-height: 1.6;
}

.quote-box {
    background: #f8fafc;
    padding: 3rem;
    position: relative;
}

.quote-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: #0f172a;
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #e2e8f0;
}

.author-name {
    font-weight: 700;
    color: #0f172a;
}

.author-title {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #2563eb;
    margin-top: 0.25rem;
}

.milestones-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.milestone-item {
    display: flex;
    gap: 3rem;
    padding: 2.5rem;
    border: 2px solid #f1f5f9;
    background: white;
    transition: all 0.3s;
}

.milestone-item:hover {
    border-color: #2563eb;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.milestone-year {
    font-size: 3rem;
    font-weight: 900;
    color: #f1f5f9;
    transition: all 0.3s;
}

.milestone-item:hover .milestone-year {
    color: #2563eb;
}

.milestone-content {
    flex: 1;
}

.milestone-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.milestone-desc {
    color: #64748b;
    line-height: 1.6;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 3px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2563eb;
    text-align: right;
    padding-top: 0.5rem;
}

.timeline-line {
    background: linear-gradient(to bottom, #2563eb, #e2e8f0);
    width: 3px;
    position: relative;
}

.timeline-item:last-child .timeline-line {
    background: linear-gradient(to bottom, #2563eb 0%, #2563eb 50%, transparent 100%);
}

.timeline-content {
    padding: 2rem;
    background: #f8fafc;
    border-left: 3px solid #2563eb;
    position: relative;
}

.timeline-badge {
    position: absolute;
    left: -3.75rem;
    top: 2rem;
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 0 0 6px white, 0 0 0 9px #2563eb;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 80px 3px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-year {
        font-size: 1.75rem;
    }
    
    .timeline-badge {
        left: -2.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        box-shadow: 0 0 0 4px white, 0 0 0 6px #2563eb;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-title {
        font-size: 1.25rem;
    }
}

/* About Page Services Grid */
.services-grid-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-about {
    padding: 2.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.service-card-about:hover {
    border-color: #2563eb;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.service-icon-about {
    width: 4rem;
    height: 4rem;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #2563eb;
    font-size: 1.75rem;
}

.service-title-about {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-desc-about {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9375rem;
}

@media (max-width: 1024px) {
    .services-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid-about {
        grid-template-columns: 1fr;
    }
}

/* Services Accordion */
.services-accordion {
    max-width: 1100px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.accordion-item.active {
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background: linear-gradient(to right, transparent, rgba(37, 99, 235, 0.02));
    transition: background 0.3s;
    gap: 1.5rem;
}

.accordion-item.active .accordion-header {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
}

.accordion-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.75rem;
    flex-shrink: 0;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.accordion-item.active .accordion-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.accordion-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s;
    font-family: 'Playfair Display', Georgia, serif;
}

.accordion-item.active .accordion-title {
    color: #2563eb;
}

.accordion-arrow {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    border-radius: 50%;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    color: #2563eb;
    background: #eff6ff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1200px;
}

.accordion-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 0 2.5rem 2.5rem;
    border-top: 1px solid #f1f5f9;
}

.accordion-text {
    padding-top: 2.5rem;
}

.accordion-text p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #2563eb;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-know-more:hover {
    background: #1e40af;
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.accordion-image {
    padding-top: 2.5rem;
    position: relative;
}

.accordion-image::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    z-index: 0;
    border-radius: 4px;
}

.accordion-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.accordion-item.active .accordion-image img {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

@media (max-width: 1024px) {
    .accordion-inner {
        grid-template-columns: 1fr;
    }
    
    .accordion-title {
        font-size: 1.5rem;
    }
    
    .accordion-header {
        padding: 1.75rem 2rem;
    }
    
    .accordion-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
    
    .accordion-inner {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 1.5rem;
        flex-wrap: wrap;
    }
    
    .accordion-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .accordion-title {
        font-size: 1.25rem;
        flex: 1;
        min-width: 0;
    }
    
    .accordion-inner {
        padding: 0 1.5rem 1.5rem;
        gap: 2rem;
    }
    
    .accordion-image img {
        height: 250px;
    }
    
    .accordion-text p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .partner-logo {
        font-size: 1rem;
    }
    
    .milestone-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .milestone-year {
        font-size: 2rem;
    }
    
    .quote-box {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
}

/* Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    margin-top: -7px;
    border: 2px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

input[type=range]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 2px;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 2px;
}

/* Header Photo Slideshow */
.header-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 5rem;
}

.header-slideshow .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.header-slideshow .slider-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.header-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.header-slideshow .slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7), transparent);
    display: flex;
    align-items: center;
    padding: 0 6rem;
}

.header-slideshow .slider-content {
    max-width: 42rem;
    color: white;
}

.header-slideshow h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: 'Playfair Display', Georgia, serif;
}

.header-slideshow p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #cbd5e1;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
}

.header-slideshow .slider-nav {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.header-slideshow .slider-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-slideshow .slider-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.header-slideshow .slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 6rem;
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.header-slideshow .slider-dot {
    width: 3rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.5s;
}

.header-slideshow .slider-dot.active {
    background: #2563eb;
    width: 4rem;
}

@media (max-width: 768px) {
    .header-slideshow {
        height: 400px;
        margin-top: 4rem;
    }
    
    .header-slideshow .slider-overlay {
        padding: 0 2rem;
    }
    
    .header-slideshow h1 {
        font-size: 2rem;
    }
    
    .header-slideshow p {
        font-size: 1rem;
    }
    
    .header-slideshow .slider-nav {
        bottom: 2rem;
        right: 2rem;
    }
    
    .header-slideshow .slider-dots {
        bottom: 2rem;
        left: 2rem;
    }
}

/* Custom Checkbox Styling */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

input[type="checkbox"]:hover {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Styled Checkmark List Items */
.checkmark-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkmark-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.checkmark-item:hover {
    transform: translateX(4px);
}

.checkmark-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: all 0.3s;
}

.checkmark-item:hover .checkmark-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.checkmark-icon i {
    font-size: 0.75rem;
    color: white;
}

.checkmark-text {
    color: #e2e8f0;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Investment Advisory Section Styling */
.investment-advisory-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.investment-advisory-section p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Who I Work With Section Styling */
.work-with-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.work-with-section p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
}

.work-with-section .checkmark-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.work-with-section .checkmark-item:hover .checkmark-icon {
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
