/* ============================================
   UNION SEAS HOSPITALITY - Premium Luxury CSS
   ============================================ */

:root {
    /* Primary Palette */
    --deep-navy: #0A1128;
    --navy: #0F1B3D;
    --royal-purple: #3D1A7C;
    --rich-purple: #5B2D8E;
    --soft-purple: #7B4DAE;
    --light-purple: #A78BCC;
    
    /* Gold Accents */
    --gold: #C8A44E;
    --gold-light: #D4B96A;
    --gold-pale: #E8D5A3;
    --gold-dark: #B8943A;
    
    /* Silver & Neutrals */
    --silver: #C4C4CC;
    --silver-light: #E2E2E8;
    --silver-dark: #9A9AA6;
    
    /* Backgrounds */
    --white: #FFFFFF;
    --off-white: #F8F7FA;
    --cream: #FDFCFB;
    --charcoal: #1A1A2E;
    
    /* Text */
    --text-dark: #1E1E2A;
    --text-medium: #4A4A5E;
    --text-light: #7A7A92;
    
    /* Effects */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 2px 8px rgba(10, 17, 40, 0.06);
    --shadow-md: 0 8px 32px rgba(10, 17, 40, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 17, 40, 0.15);
    --shadow-xl: 0 30px 80px rgba(10, 17, 40, 0.2);
    --shadow-gold: 0 4px 24px rgba(200, 164, 78, 0.25);
    --shadow-gold-lg: 0 12px 40px rgba(200, 164, 78, 0.35);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Georgia', 'Times New Roman', 'Palatino Linotype', 'Book Antiqua', serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Palatino Linotype', 'Book Antiqua', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--deep-navy);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 0.6rem;
}

h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.75;
}

a {
    color: var(--rich-purple);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

a:hover {
    color: var(--gold-dark);
}

strong {
    color: var(--deep-navy);
    font-weight: 700;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-purple {
    color: var(--rich-purple);
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 17, 40, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 164, 78, 0.25);
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 17, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    padding: 0 2rem;
    transition: height 0.4s var(--transition-smooth);
}

.navbar.scrolled .navbar-inner {
    height: 64px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 1001;
}

.navbar-logo .logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--deep-navy);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(200, 164, 78, 0.3);
    transition: all 0.3s var(--transition-smooth);
}

.navbar-logo:hover .logo-icon {
    box-shadow: 0 0 30px rgba(200, 164, 78, 0.5);
    transform: scale(1.05);
}

.navbar-logo span {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--silver-light);
    text-decoration: none;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: all 0.3s var(--transition-smooth);
    white-space: nowrap;
    font-family: 'Georgia', serif;
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
    background: rgba(200, 164, 78, 0.08);
}

/* CTA Button in Nav */
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--deep-navy) !important;
    font-weight: 700 !important;
    padding: 0.65rem 1.6rem !important;
    border-radius: var(--radius-full) !important;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s var(--transition-bounce) !important;
    letter-spacing: 0.05em !important;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg) !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-pale)) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--gold-light);
    border-radius: 3px;
    transition: all 0.3s var(--transition-smooth);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(180deg, 
            rgba(10, 17, 40, 0.5) 0%, 
            rgba(15, 27, 61, 0.6) 35%, 
            rgba(61, 26, 124, 0.65) 100%
        );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Animated background effect */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(200, 164, 78, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(91, 45, 142, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(15, 27, 61, 0.2) 0%, transparent 50%);
    animation: heroShimmer 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroShimmer {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -1%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

/* Bottom gradient fade */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, var(--off-white) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 2rem;
    animation: fadeInUp 1.2s var(--transition-smooth) both;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(200, 164, 78, 0.12);
    border: 1px solid rgba(200, 164, 78, 0.4);
    color: var(--gold-light);
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.2s var(--transition-smooth) 0.2s both;
}

.hero h1 {
    color: var(--white);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
    animation: fadeInUp 1.2s var(--transition-smooth) 0.4s both;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero h1 .gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold-pale) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--silver-light);
    font-size: 1.2rem;
    margin-bottom: 2.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1.2s var(--transition-smooth) 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1.2s var(--transition-smooth) 0.8s both;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.95rem 2.4rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s var(--transition-bounce);
    border: none;
    font-family: 'Georgia', serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-4px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

/* ============================================
   PAGE BANNER (Secondary Pages)
   ============================================ */

.page-banner {
    padding: 9rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, 
        var(--deep-navy) 0%, 
        var(--navy) 50%, 
        var(--royal-purple) 100%
    );
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 164, 78, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(91, 45, 142, 0.2) 0%, transparent 50%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.page-banner p {
    color: var(--silver-light);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 0;
    position: relative;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 7rem 0;
}

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

.section-header .overline {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    margin: 1rem auto 0;
    border-radius: 3px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
}

/* ============================================
   BACKGROUND VARIANTS
   ============================================ */

.bg-navy {
    background: var(--deep-navy);
    color: var(--white);
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
    color: var(--white);
}

.bg-navy p {
    color: var(--silver-light);
}

.bg-navy .section-header .overline {
    color: var(--gold-light);
}

.bg-cream {
    background: var(--cream);
}

.bg-white {
    background: var(--white);
}

.bg-purple-grad {
    background: linear-gradient(180deg, var(--royal-purple) 0%, var(--deep-navy) 100%);
    color: var(--white);
}

.bg-purple-grad h1,
.bg-purple-grad h2,
.bg-purple-grad h3,
.bg-purple-grad h4 {
    color: var(--white);
}

.bg-purple-grad p {
    color: var(--silver-light);
}

/* ============================================
   CARDS GRID SYSTEM
   ============================================ */

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

.cards-grid-sm {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.cards-grid-lg {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* ============================================
   CARD COMPONENT
   ============================================ */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.45s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200, 164, 78, 0.2);
}

.card-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-purple) 50%, var(--rich-purple) 100%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.05), transparent);
}

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

.card-body {
    padding: 1.8rem;
    flex: 1;
}

.card-body h3 {
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

.card-tag {
    display: inline-block;
    background: rgba(61, 26, 124, 0.08);
    color: var(--rich-purple);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Dark card variant (for bg-navy sections) */
.card-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-dark .card-body h3 {
    color: var(--gold-light);
}

.card-dark .card-body p {
    color: var(--silver-light);
}

.card-dark .card-tag {
    background: rgba(200, 164, 78, 0.15);
    color: var(--gold-light);
}

.card-dark:hover {
    border-color: rgba(200, 164, 78, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   SHIP CARDS (Cruise Fleet)
   ============================================ */

.ship-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.45s var(--transition-smooth);
    border: 1px solid rgba(200, 164, 78, 0.2);
    display: flex;
    flex-direction: column;
}

.ship-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(10, 17, 40, 0.4);
    border-color: rgba(200, 164, 78, 0.5);
}

.ship-card-image {
    height: 270px;
    background: linear-gradient(135deg, 
        var(--navy) 0%, 
        var(--royal-purple) 40%, 
        var(--rich-purple) 70%, 
        var(--deep-navy) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.ship-card-image::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.6), transparent);
    z-index: 1;
}

.ship-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(200, 164, 78, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.ship-card-body {
    padding: 2rem;
    flex: 1;
}

.ship-card-body h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.ship-stats {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1.2rem 0;
}

.ship-stat {
    background: rgba(200, 164, 78, 0.12);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(200, 164, 78, 0.2);
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gold);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(200, 164, 78, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-left-color: var(--gold-light);
}

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

.testimonial-author {
    font-weight: 700;
    color: var(--deep-navy);
    margin-top: 1.2rem;
    font-style: italic;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
    position: relative;
    padding-left: 2.5rem;
    border-left: 3px solid var(--gold);
    margin: 2rem 0;
}

.timeline-item {
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.4rem;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--deep-navy);
    box-shadow: 0 0 0 5px rgba(200, 164, 78, 0.2);
}

.timeline-year {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.3rem;
}

/* ============================================
   STATS GRID
   ============================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--transition-smooth);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rich-purple);
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ============================================
   FORMS
   ============================================ */

.booking-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.8rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 164, 78, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1.1rem;
    border: 2px solid #E2E2E8;
    border-radius: var(--radius-sm);
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-smooth);
    background: var(--off-white);
    color: var(--text-dark);
    width: 100%;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #C4C4CC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 164, 78, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--gold);
    transition: all 0.35s var(--transition-smooth);
    margin-bottom: 1.5rem;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-top-color: var(--gold-light);
}

.contact-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    display: block;
}

.contact-info-card h3 {
    margin-bottom: 0.5rem;
}

/* ============================================
   NEWSLETTER BOX
   ============================================ */

.newsletter-box {
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--navy) 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 164, 78, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-box h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.newsletter-box p {
    position: relative;
    z-index: 1;
}

.newsletter-box form {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.newsletter-box input {
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Georgia', serif;
    font-size: 1rem;
    width: 350px;
    max-width: 100%;
    transition: all 0.3s;
}

.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-box input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 4px rgba(200, 164,













