/* ===================================
   K. Adubofour & Sons Ltd - Styles
   White Theme with Gold Accents
=================================== */

/* CSS Variables */
:root {
    /* Colors */
    --white: #ffffff;
    --white-soft: #fafafa;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #fafafa;
    --card-foreground: #1a1a1a;
    
    /* Gold */
    --gold: #c9a227;
    --gold-light: #dbb94a;
    --gold-dark: #a17f1a;
    
    /* Charcoal */
    --charcoal: #262626;
    --charcoal-light: #404040;
    
    /* Muted */
    --muted: #f0ede9;
    --muted-foreground: #737373;
    
    /* Border */
    --border: #e0ddd7;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.15);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 5rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--card);
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--muted);
    border-color: rgba(201, 162, 39, 0.5);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Text Gradient */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
}

.section-header p {
    max-width: 42rem;
    margin: 0 auto;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .section-header h2 { font-size: 3rem; }
}

/* ===================================
   Header
=================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(224, 221, 215, 0.5);
}

/* Top Bar */
.top-bar {
    display: none;
    background: var(--charcoal);
    color: var(--white);
}

@media (min-width: 1024px) {
    .top-bar { display: block; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-link:hover {
    color: var(--gold);
}

/* Main Nav */
.main-nav {
    padding: 1rem 0;
        box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 3rem;
    width: auto;
}

@media (min-width: 768px) {
    .logo img { height: 4rem; }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    position: relative;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta { display: inline-flex; }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu { display: none !important; }
}

.mobile-nav-links {
    padding: 1.5rem 0;
}

.mobile-nav-links li {
    padding: 0.75rem 0;
}

.mobile-nav-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
}

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

.mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* ===================================
   Hero Section
=================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 40%,
        rgba(255, 255, 255, 0.8) 100%
    );
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(255, 255, 255, 1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.6) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 10;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-content {
    max-width: 48rem;
    padding-top:30px;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: var(--charcoal);
}

@media (min-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
    .hero h1 { font-size: 4.25rem; }
}

.hero-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-text { font-size: 1.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.stat-icon {
    padding: 0.75rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0.5rem;
    color: var(--gold);
}

.stat-card h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(201, 162, 39, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===================================
   About Section
=================================== */
.about {
    background: linear-gradient(180deg, var(--white), #faf9f7);
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.15);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .about-image img { height: 500px; }
}

.experience-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.badge-year {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.badge-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-content h2 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .about-content h2 { font-size: 3rem; }
}

.about-text {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .mission-vision { grid-template-columns: 1fr 1fr; }
}

.mv-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mv-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.mv-icon {
    display: inline-flex;
    padding: 0.5rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mv-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Core Values */
.core-values h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.value-tag svg {
    color: var(--gold);
}

/* ===================================
   Services Section
=================================== */
.services {
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(38, 38, 38, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.services-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-icon {
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 0.75rem;
    color: var(--white);
}

.services-header h3 {
    font-size: 1.5rem;
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.service-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-md);
}

.service-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0.5rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.875rem;
}

.service-item span:last-child {
    font-weight: 500;
}

/* ===================================
   Products Section
=================================== */
.products {
    background: rgba(201, 162, 39, 0.03);
    position: relative;
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
}

.product-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.product-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-category:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(38, 38, 38, 0.7), rgba(38, 38, 38, 0.2), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.product-overlay h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.product-desc {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.product-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .product-list { grid-template-columns: 1fr 1fr; }
}

.product-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.product-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.product-number {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0.375rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
}

/* ===================================
   Why Choose Us Section
=================================== */
.why-choose-us {
    background: var(--white);
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(201, 162, 39, 0.02), transparent, rgba(201, 162, 39, 0.02));
}

.why-choose-us .container {
    position: relative;
}

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

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.why-content h2 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .why-content h2 { font-size: 3rem; }
}

.why-text {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

@media (min-width: 640px) {
    .reasons-grid { grid-template-columns: 1fr 1fr; }
}

.reason-card {
    padding: 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.reason-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.reason-icon {
    display: inline-flex;
    padding: 0.5rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reason-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Why Image */
.why-image {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .why-image { order: 1; }
}

.why-image .image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.15);
}

.why-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .why-image img { height: 500px; }
}

.trusted-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}

.trusted-icon {
    padding: 0.5rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0.5rem;
    color: var(--gold);
}

.trusted-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.trusted-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ===================================
   Contact Section
=================================== */
.contact {
    background: rgba(201, 162, 39, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

/* Contact Info */
.info-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    padding: 0.75rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: rgba(201, 162, 39, 0.2);
}

.info-label {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.info-value {
    display: block;
    font-weight: 500;
}

a.info-item:hover .info-value {
    color: var(--gold);
}

/* CTA Card */
.cta-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.cta-link svg {
    transition: var(--transition);
}

.cta-link:hover svg {
    transform: translateX(4px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    padding: 2rem;
}

.contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
    margin-bottom: 0;
}

.form-group:last-of-type:not(.form-row .form-group) {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--foreground);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group textarea {
    resize: none;
}

.contact-form .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .contact-form .btn { width: auto; }
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand img {
    height: 3.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li,
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    color: var(--gold);
}

.footer-contact a:hover {
    color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-top-btn {
    padding: 0.75rem;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0.5rem;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.scroll-top-btn:hover {
    background: rgba(201, 162, 39, 0.3);
    transform: translateY(-4px);
}

/* ===================================
   Toast Notification
=================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(150%);
    opacity: 0;
    transition: var(--transition);
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast svg {
    color: #22c55e;
}

/* ===================================
   Animations
=================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-slide-up:nth-child(1) { animation-delay: 0.1s; }
.animate-slide-up:nth-child(2) { animation-delay: 0.2s; }
.animate-slide-up:nth-child(3) { animation-delay: 0.3s; }

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Custom Scrollbar
=================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 162, 39, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 162, 39, 0.7);
}
