/* ========================================
   COLOR PALETTE
   ======================================== */
:root {
    --deep-navy: #071830;
    --gold: #C49732;
    --sand-gold: #D9B878;
    --white: #FFFFFF;
    --light-navy: #0f2847;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--deep-navy);
    color: var(--white);
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
    font-family: 'Cinzel Decorative', cursive;
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.6rem;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--light-navy) 100%);
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(196, 151, 50, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.brand-text {
    text-align: left;
}

.company-name {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--sand-gold);
    font-style: italic;
    font-weight: 300;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(180deg, var(--light-navy) 0%, var(--deep-navy) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🕉️';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--sand-gold);
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 6rem 0;
    background-color: var(--deep-navy);
}

.section-title {
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--white);
    font-weight: 400;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--light-navy) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--deep-navy) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--sand-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(196, 151, 50, 0.3);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
}

.service-title {
    color: var(--sand-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-description {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 6rem 0;
    background-color: var(--deep-navy);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--deep-navy) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(196, 151, 50, 0.2);
}

.contact-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--sand-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--deep-navy) 100%);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--gold);
}

.footer-text {
    color: var(--sand-gold);
    font-size: 1rem;
    font-style: italic;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    h2 {
        font-size: 2.2rem;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    body {
        font-size: 16px;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .contact-item {
        animation: fadeIn 0.6s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

