:root {
    --primary-gold: #D4AF37;
    --deep-blue: #0A1F44;
    --sky-blue: #4A90E2;
    --dark-slate: #1A2332;
    --light-gold: #F4E4C1;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--dark-slate);
    overflow-x: hidden;
}

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

/* Glassmorphism Styles */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-hero {
    background: rgba(10, 31, 68, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-overlay {
    background: linear-gradient(to top, rgba(10, 31, 68, 0.85), rgba(10, 31, 68, 0.4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-gold);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.logo h2 {
    font-size: 1.8rem;
    color: var(--deep-blue);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-slate);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--deep-blue);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section with Theia-Inspired Background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0A1F44 0%, #162A4A 50%, #1E3A5F 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

/* Theia-Inspired Animated Background */
.theia-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sun-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(ellipse at center, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 70%),
        conic-gradient(from 0deg, 
            transparent 0deg, 
            rgba(212, 175, 55, 0.15) 30deg, 
            transparent 60deg,
            rgba(212, 175, 55, 0.15) 90deg,
            transparent 120deg,
            rgba(212, 175, 55, 0.15) 150deg,
            transparent 180deg,
            rgba(212, 175, 55, 0.15) 210deg,
            transparent 240deg,
            rgba(212, 175, 55, 0.15) 270deg,
            transparent 300deg,
            rgba(212, 175, 55, 0.15) 330deg,
            transparent 360deg
        );
    animation: rotateSun 60s linear infinite;
}

@keyframes rotateSun {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Light Orbs */
.light-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent 70%);
    filter: blur(40px);
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.3), transparent 70%);
}

.orb-3 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 40px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* Constellations */
.constellation {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(212, 175, 55, 0.5),
        20px 30px 0 rgba(212, 175, 55, 0.6),
        40px 10px 0 rgba(212, 175, 55, 0.7),
        60px 40px 0 rgba(212, 175, 55, 0.5);
    animation: twinkle 3s ease-in-out infinite;
}

.constellation-1 {
    top: 15%;
    left: 30%;
    animation-delay: 0s;
}

.constellation-2 {
    top: 70%;
    right: 25%;
    animation-delay: 1s;
}

.constellation-3 {
    bottom: 20%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating Gems */
.floating-gems {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gem {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-gem 15s ease-in-out infinite;
}

.gem:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.gem:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
}

.gem:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 6s;
}

.gem:nth-child(4) {
    top: 60%;
    right: 30%;
    animation-delay: 9s;
}

.gem:nth-child(5) {
    bottom: 15%;
    right: 10%;
    animation-delay: 12s;
}

@keyframes float-gem {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.8;
    }
}

/* Hero Content */
.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-gold);
    font-size: 0.85rem;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--deep-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    margin: 0 auto 1.5rem;
}

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

/* About Section */
.about {
    background: var(--off-white);
}

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

.about-text .lead-text {
    font-size: 1.3rem;
    color: var(--deep-blue);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

.mythic-circle {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-outer,
.circle-middle,
.circle-inner {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.circle-outer {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.circle-middle {
    width: 70%;
    height: 70%;
    opacity: 0.5;
    animation: rotate 15s linear infinite reverse;
}

.circle-inner {
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--sky-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.greek-symbol {
    font-size: 5rem;
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--sky-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Cinzel', serif;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    color: var(--gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* Philosophy Section */
.philosophy {
    background: var(--deep-blue);
    color: var(--white);
}

.philosophy .section-title {
    color: var(--white);
}

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

.philosophy-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio {
    background: var(--off-white);
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px var(--shadow);
    transition: all 0.3s ease;
    aspect-ratio: 16/10;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow-dark);
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
}

.portfolio-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-gold);
    color: var(--deep-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-card {
    padding: 3rem 2.5rem;
    border-radius: 15px;
    height: fit-content;
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.info-card > p {
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2.5rem;
}

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

.detail-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.detail-item h4 {
    font-size: 1rem;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}

.detail-item p,
.detail-item a {
    color: var(--gray);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}

.detail-item a:hover {
    color: var(--primary-gold);
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form form {
    padding: 3rem;
    border-radius: 15px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark-slate);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.2);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-slate);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    color: var(--primary-gold);
}

.footer-logo h3 {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu li {
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .glass-hero {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .mythic-circle {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* Etymology Section - Why THIA */
.etymology {
    background: linear-gradient(135deg, var(--off-white) 0%, #e8eff7 100%);
    padding: 7rem 0;
}

.etymology-content {
    display: grid;
    gap: 4rem;
}

.etymology-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.letter-evolution {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.letter-stage {
    text-align: center;
    padding: 2rem;
    min-width: 150px;
}

.letter-stage.highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--sky-blue));
    border-radius: 20px;
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.ancient-letter, .modern-letter, .brand-letter {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.letter-stage.highlight .brand-letter {
    color: var(--white);
    font-size: 3.5rem;
}

.letter-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.letter-stage.highlight .letter-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.evolution-arrow {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.etymology-text {
    max-width: 1000px;
    margin: 0 auto;
}

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

.reason-card {
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--gray);
    line-height: 1.8;
}

.etymology-quote {
    margin-top: 4rem;
    text-align: center;
}

.etymology-quote blockquote {
    background: linear-gradient(135deg, var(--deep-blue), var(--sky-blue));
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-gold);
    position: relative;
}

.etymology-quote p {
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.etymology-quote footer {
    color: var(--light-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Enhanced Portfolio with Stats */
.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--primary-gold);
    color: var(--deep-blue);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.portfolio-link:hover {
    border-bottom-color: var(--primary-gold);
    transform: translateX(5px);
}

/* Enhanced Contact Form */
.contact-form-wrapper {
    width: 100%;
}

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

.form-header h3 {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.checkbox-group {
    margin-bottom: 1rem !important;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    position: relative;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

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

.checkbox-text {
    color: var(--dark-slate);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-loader {
    display: none;
}

.form-privacy {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
}

.form-privacy small {
    display: block;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .etymology-reasons {
        grid-template-columns: 1fr;
    }
    
    .portfolio-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .letter-evolution {
        flex-direction: column;
        gap: 1rem;
    }
    
    .evolution-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    
    .letter-stage {
        padding: 1.5rem;
        min-width: 120px;
    }
    
    .ancient-letter, .modern-letter, .brand-letter {
        font-size: 2.5rem;
    }
    
    .etymology-quote p {
        font-size: 1.3rem;
    }
    
    .portfolio-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .reason-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Stats Bar Section */
.stats-bar {
    background: linear-gradient(135deg, var(--deep-blue), var(--sky-blue));
    padding: 3rem 0;
    margin-top: -2px;
}

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

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-content {
    flex: 1;
}

.stat-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Cinzel', serif;
    display: inline-block;
}

.plus {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-left: 0.2rem;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* Etymology Enhancements */
.etymology-header {
    text-align: center;
    margin-bottom: 3rem;
}

.etymology-intro {
    font-size: 1.2rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 1rem;
}

.letter-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
    font-style: italic;
}

.letter-stage.highlight .letter-desc {
    color: rgba(255, 255, 255, 0.8);
}

.evolution-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.evolution-arrow span {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.evolution-arrow small {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reason-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.reason-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.reason-card:hover .reason-accent {
    transform: scaleX(1);
}

.quote-mark {
    font-size: 5rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: -1rem;
}

/* Service CTA */
.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.service-cta:hover {
    border-bottom-color: var(--primary-gold);
    transform: translateX(5px);
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.portfolio-item.hidden {
    display: none;
}

/* Testimonials Section */
.testimonials {
    background: var(--off-white);
    padding: 6rem 0;
}

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

.testimonial-card {
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-slate);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--sky-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Form Enhancements */
.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
}

.loader {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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

    .stat-box {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .scroll-indicator,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
