/* ===================================
   Color Palette
   =================================== */
:root {
    --black: #000000;
    --rich-black: #0a0a0a;
    --gold: #D4AF37;
    --light-gold: #F4E5C2;
    --dark-gold: #B8941E;
    --taupe: #8B7E74;
    --light-taupe: #C9BDB1;
    --dark-taupe: #6B5F54;
    --cream: #F5F1E8;
    --white: #FFFFFF;
    --shadow: rgba(212, 175, 55, 0.2);
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-gold);
    box-shadow: 0 4px 20px var(--shadow);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-taupe);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    transition: width 0.3s ease;
}

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-icon {
    position: relative;
    font-size: 22px;
    color: var(--light-taupe);
    padding: 8px;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.icon-badge {
    position: absolute;
    top: 0;
    right: -5px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.login-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
/* Hero Image Slider Section */
.hero-slider {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

/* Slider Images Container */
.slider-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

/* Translucent Black/Pantone Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 20, 16, 0.65) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
    pointer-events: none;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(212, 175, 55, 0.7);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Legacy hero class support */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background: radial-gradient(ellipse at center, #1a1410 0%, var(--black) 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 120px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--light-taupe);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 18px;
    color: var(--light-taupe);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.category-card {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 126, 116, 0.1) 0%, rgba(107, 95, 84, 0.15) 100%);
    border: 2px solid var(--dark-gold);
    border-radius: 20px;
    padding: 60px 40px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px var(--shadow);
}

.category-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: var(--light-gold);
}

.category-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--gold);
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: var(--light-gold);
}

.category-card p {
    font-size: 16px;
    color: var(--light-taupe);
    margin-bottom: 0;
}

.category-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold));
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===================================
   Section Header
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 56px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--light-taupe);
    font-style: italic;
}

/* ===================================
   About Us Section
   =================================== */
.about-us {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--black) 50%, var(--rich-black) 100%);
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-tagline {
    font-size: 32px;
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
    margin-top: 20px;
}

.about-content {
    max-width: 1000px;
    margin: 60px auto;
}

.about-philosophy {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(139, 126, 116, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.about-philosophy::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.philosophy-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 30px;
    animation: pulse 3s ease-in-out infinite;
}

.philosophy-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--cream);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.mission-statement {
    text-align: center;
    padding: 40px;
}

.mission-statement p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--light-taupe);
}

.mission-statement strong {
    color: var(--gold);
    font-weight: 600;
}

.founder-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin: 80px auto;
    max-width: 1200px;
    align-items: center;
}

.story-content {
    background: linear-gradient(135deg, rgba(139, 126, 116, 0.08), rgba(107, 95, 84, 0.05));
    border-left: 4px solid var(--gold);
    padding: 50px;
    border-radius: 15px;
}

.story-content h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-content h3 i {
    font-size: 28px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-taupe);
    margin-bottom: 20px;
}

.story-content strong {
    color: var(--cream);
    font-weight: 600;
}

.founder-highlight {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--black);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.highlight-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.founder-highlight h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--black);
}

.founder-highlight p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
}

.impact-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px auto;
    max-width: 1200px;
}

.impact-card {
    background: linear-gradient(135deg, rgba(139, 126, 116, 0.08), rgba(107, 95, 84, 0.12));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--black);
}

.impact-card h4 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
}

.impact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-taupe);
}

.invitation {
    max-width: 1000px;
    margin: 80px auto 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 126, 116, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 60px;
}

.invitation h3 {
    font-size: 36px;
    color: var(--cream);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.invitation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.invitation-item {
    padding: 30px;
    transition: all 0.3s ease;
}

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

.invitation-item i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.invitation-item p {
    font-size: 18px;
    color: var(--light-taupe);
    font-style: italic;
    font-weight: 500;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--rich-black) 50%, var(--black) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(139, 126, 116, 0.08) 0%, rgba(107, 95, 84, 0.12) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px var(--shadow);
}

.feature-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--light-gold);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold);
}

.feature-card p {
    font-size: 15px;
    color: var(--light-taupe);
    line-height: 1.7;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(139, 126, 116, 0.05) 0%, var(--black) 70%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(139, 126, 116, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px var(--shadow);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 15px;
    color: var(--light-taupe);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--taupe);
}

/* ===================================
   Certifications Section
   =================================== */
.certifications {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--rich-black) 100%);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.certification-card {
    background: linear-gradient(135deg, rgba(139, 126, 116, 0.08) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.certification-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px var(--shadow);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(139, 126, 116, 0.1) 100%);
}

.cert-icon {
    font-size: 55px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.certification-card:hover .cert-icon {
    transform: scale(1.1) rotate(-5deg);
    color: var(--light-gold);
}

.certification-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--gold);
}

.certification-card p {
    font-size: 14px;
    color: var(--light-taupe);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--black) 100%);
    border-top: 2px solid var(--dark-gold);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--light-taupe);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    color: var(--taupe);
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-size: 14px;
    color: var(--taupe);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--taupe);
    font-size: 14px;
}

.contact-info i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 14px 18px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(139, 126, 116, 0.1);
    color: var(--light-taupe);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(139, 126, 116, 0.15);
}

.newsletter-form input::placeholder {
    color: var(--taupe);
}

.newsletter-form button {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--taupe);
}

.footer-bottom i {
    color: var(--gold);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 90px;
    }
    
    .features-grid,
    .testimonials-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-section,
    .invitation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero,
    .hero-slider {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 50px;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-categories {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .category-card {
        padding: 40px 30px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 38px;
    }
    
    .features-grid,
    .testimonials-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-tagline {
        font-size: 24px;
    }
    
    .about-philosophy {
        padding: 40px 30px;
    }
    
    .philosophy-text {
        font-size: 18px;
    }
    
    .mission-statement p {
        font-size: 18px;
    }
    
    .founder-story {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        padding: 35px;
    }
    
    .story-content h3 {
        font-size: 26px;
    }
    
    .impact-section,
    .invitation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .invitation {
        padding: 40px 30px;
    }
    
    .invitation h3 {
        font-size: 28px;
    }
    
    .why-choose-us,
    .about-us,
    .testimonials,
    .certifications {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .category-icon {
        font-size: 45px;
    }
    
    .category-card h3 {
        font-size: 26px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .about-tagline {
        font-size: 20px;
    }
    
    .about-philosophy {
        padding: 30px 20px;
    }
    
    .philosophy-icon {
        font-size: 45px;
    }
    
    .philosophy-text {
        font-size: 16px;
    }
    
    .story-content {
        padding: 25px;
    }
    
    .story-content h3 {
        font-size: 22px;
    }
    
    .story-content p {
        font-size: 16px;
    }
    
    .invitation h3 {
        font-size: 24px;
    }
    
    .invitation-item i {
        font-size: 40px;
    }
    
    .invitation-item p {
        font-size: 16px;
    }
}
