:root {
    /* Brand Colors extracted from logo */
    --bg-primary: #121A33; /* Deep Navy Blue */
    --bg-secondary: #0D1326; /* Darker Navy */
    --bg-card: #182240;
    --bg-card-hover: #1E2B52;
    
    --accent-color: #C6A355; /* Luxurious Gold */
    --accent-hover: #E3C174;
    --accent-dark: #A18340;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A8C0;
    --text-dark: #0D1326;
    
    --font-heading: 'Cinzel', serif; /* Classic, authoritative, matches the AL logo */
    --font-body: 'Montserrat', sans-serif; /* Clean, modern, highly legible */
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --section-padding: 8rem 1.5rem;
}

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

html {
    scroll-behavior: auto; /* GSAP will handle smooth scroll or we let normal scroll happen smoothly */
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    cursor: none; /* Custom cursor */
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(198, 163, 85, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

/* Interactive elements hover effect for cursor */
a:hover ~ .cursor, button:hover ~ .cursor {
    width: 0;
    height: 0;
}
a:hover ~ .cursor-follower, button:hover ~ .cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(198, 163, 85, 0.1);
    border-color: var(--accent-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-text {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.text-gold {
    color: var(--accent-color);
}

/* Layout */
.section {
    padding: var(--section-padding);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 0; /* Sharp edges for premium look */
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: none; /* Let custom cursor handle */
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary::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: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 163, 85, 0.2);
}

.btn-primary:hover::before {
    left: 100%;
    transition: 0.6s;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

/* Navigation - Redesigned to match logo image */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(18, 26, 51, 0.98);
    padding: 1.2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Logo Construction matching the image provided */
.nav-logo, .footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-mark {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-primary);
    line-height: 1;
    font-weight: 400;
    border-right: 1px solid var(--accent-color);
    padding-right: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

.nav-cta {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 1.5rem;
    background-color: var(--bg-primary); /* Clean Navy Blue */
    overflow: hidden;
}

/* Smooth gradient glowing orbs instead of noise */
.hero-bg-elements {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(198, 163, 85, 0.15); /* Gold glow */
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: rgba(13, 19, 38, 0.8); /* Darker navy glow */
    bottom: -300px;
    left: -200px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-line {
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

.hero-subtitle {
    font-family: var(--font-body);
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    animation: scrollLine 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* About Section */
.about {
    background-color: var(--bg-secondary);
}

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

.image-frame {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(198, 163, 85, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.frame-border {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    z-index: 1;
}

.experience-floating {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background: var(--bg-primary);
    padding: 2rem;
    z-index: 3;
    border-left: 3px solid var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.experience-floating .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-floating .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.about-text-content {
    margin-bottom: 3rem;
}

.about-pillars {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

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

.pillar i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.pillar span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* Specialties Section */
.specialties {
    background-color: var(--bg-primary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

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

.specialty-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-card);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.specialty-card:hover .card-bg {
    transform: translateY(0);
}

.specialty-card:hover {
    border-color: rgba(198, 163, 85, 0.3);
}

.card-content-inner {
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 2;
}

.card-icon-wrapper {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.specialty-card:hover .card-icon-wrapper {
    transform: scale(1.1) translateX(10px);
}

.specialty-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.card-list {
    list-style: none;
}

.card-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.specialty-card:hover .card-list li {
    color: var(--text-primary);
}

.card-list li::before {
    content: '';
    width: 15px;
    height: 1px;
    background-color: var(--accent-color);
}

/* Reviews */
.reviews {
    background-color: var(--bg-secondary);
    text-align: center;
    padding: 8rem 1.5rem;
    position: relative;
}

.review-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.reviews h2 {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.google-badge i {
    color: var(--accent-color);
}

/* Contact */
.contact {
    background-color: var(--bg-primary);
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border-left: 2px solid transparent;
}

.contact-item:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--accent-color);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.contact-item h5 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

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

.map-card-premium {
    height: 500px;
    background: var(--bg-card);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.map-content {
    padding: 3rem;
    z-index: 2;
}

.map-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 5rem 1.5rem 2rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .experience-floating {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger {
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }
    
    .hamburger span {
        width: 100%;
        height: 2px;
        background-color: var(--accent-color);
        transition: 0.3s;
    }
    
    .mobile-menu-btn.active .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-btn.active .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    /* Disable custom cursor on mobile */
    .cursor, .cursor-follower {
        display: none;
    }
    body, a, button, .btn {
        cursor: auto;
    }
}
