/* =========================================
   Surplus.qa - Premium Design System
   Theme: Minimalist Luxury
   Colors: Navy (#2B2E5F) & Gold (#C5A059)
   ========================================= */

:root {
    --primary: #2B2E5F;
    --primary-dark: #1A1C35;
    --gold: #C5A059;
    --gold-light: #D4B87F;
    --white: #ffffff;
    --light-grey: #F8F9FA;
    /* Slightly cooler grey */
    --text-dark: #111111;
    --text-muted: #555555;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    /* Smoother ease-out */
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Section Utilities */
.section {
    padding: 60px 0;
}

.section-badge {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-block;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    /* Starts transparent */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    /* More transparent */
    backdrop-filter: blur(16px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-top: 4px;
}

.navbar.scrolled .logo-title {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    /* Remove bullet dots */
}

.nav-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: 100%;
    background: var(--gold);
}

.navbar.scrolled .nav-link {
    color: var(--primary);
}

.navbar.scrolled .nav-link.active {
    color: var(--gold);
}

.nav-btn {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
}

.nav-btn:hover {
    background: var(--white);
    color: var(--primary);
}

/* Active Contact Button */
.nav-btn.active {
    background: var(--primary);
    color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold);
}

/* Hamburger Menu (Classic Three-Line Style) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--primary);
}

.hamburger:hover {
    transform: scale(1.05);
}

.hamburger:hover span {
    background: var(--gold);
}

/* Hamburger Animation - X when active */
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--primary);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1000;
        display: none;
        /* Hidden by default */
    }

    .nav-links.active {
        right: 0;
        display: flex !important;
        /* Show when active */
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 18px 20px;
        color: var(--white) !important;
        font-size: 16px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }

    .nav-btn {
        margin-top: 20px;
        text-align: center;
        display: block;
        width: 100%;
    }

    /* Mobile Menu Overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .mobile-overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 46, 95, 0.3);
}

.scroll-to-top:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(197, 160, 89, 0.4);
}

.scroll-to-top.visible {
    display: flex;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.1);
    animation: zoomEffect 20s infinite alternate;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(43, 46, 95, 0.4), rgba(43, 46, 95, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin-top: 60px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -2px;
    /* Tighter for display font */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    /* Premium depth */
}

.highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.value-item i {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
}

.value-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.image-wrapper img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 16px;
    align-items: center;
}

.experience-badge .number {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

/* Trading Section */
.bg-light {
    background-color: var(--light-grey);
}

.trading-block {
    margin-bottom: 40px;
}

.block-header {
    margin-bottom: 40px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item.huge {
    grid-column: span 1;
    grid-row: span 2;
}

.grid-item.wide {
    grid-column: span 2;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(26, 28, 53, 0.9));
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.grid-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.custom-card {
    background: var(--primary);
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.custom-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.custom-card h4 {
    color: var(--white);
    margin-bottom: 12px;
}

/* AC Block */
.ac-block {
    background: var(--white);
    padding: 60px;
    box-shadow: var(--shadow);
}

.ac-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-dark);
}

.ac-services i {
    color: var(--gold);
    font-size: 14px;
}

.ac-image img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

/* Ticker */
.partners-ticker {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.partner {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #ccc;
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: default;
}

.partner:hover {
    color: var(--gold);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Contracting Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f5f5f5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(43, 46, 95, 0.15);
    border-color: var(--gold);
}

.service-image {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-grey), #fafafa);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--navy));
    transform: rotate(10deg) scale(1.1);
}

.service-card:hover .service-icon i {
    color: var(--gold);
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.service-subtitle {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px !important;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive for contracting services */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 200px;
        width: 100%;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.why-item {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--primary));
    transition: height 0.4s ease;
}

.why-item:hover::before {
    height: 100%;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(197, 160, 89, 0.2);
    border-color: var(--gold);
}

.why-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--light-grey), #f9f9f9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), #d4a962);
    transform: scale(1.1) rotate(-5deg);
}

.why-item:hover .why-icon i {
    color: var(--white);
}

.why-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.why-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Why Choose */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
}

.contact-item h5 {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 2px;
}

.footer-form-wrapper h3 {
    color: var(--primary);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #eee;
    background: var(--light-grey);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--gold);
}


.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    opacity: 0.6;
}

.social-links a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    background: var(--white);
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .image-wrapper img {
        height: 400px;
    }

    .masonry-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-item.huge {
        grid-column: span 2;
    }

    .ac-block {
        padding: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Add mobile menu logic later */
    .hero-title {
        font-size: 36px;
    }

    .masonry-grid {
        display: flex;
        flex-direction: column;
    }

    .grid-item,
    .grid-item img {
        height: 250px;
    }
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 48px;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* View More Button */
.view-more-btn {
    display: inline-block;
    margin: 32px auto;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.view-more-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hidden items for progressive disclosure */
.product-card.hidden {
    display: none;
}

/* Enhanced product card hover */
.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 48px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Gallery container */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 32px;
        padding: 8px 12px;
    }
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--light-grey);
    flex-wrap: wrap;
}

.gallery-tab-btn {
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.gallery-tab-btn:hover {
    color: var(--primary);
    background: rgba(43, 46, 95, 0.05);
}

.gallery-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--gold);
}

.gallery-tab-btn .count {
    opacity: 0.6;
    font-size: 13px;
    margin-left: 4px;
}

/* Tab Panels */
.gallery-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.gallery-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Counter */
.image-counter {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin: 24px 0 16px;
    font-weight: 500;
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 32px auto;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 46, 95, 0.2);
}

.load-more-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 46, 95, 0.3);
}

.load-more-btn .remaining-count {
    opacity: 0.8;
    font-weight: 400;
}

/* Fade in animation for loaded items */
.product-card.fade-in {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced product grid for tabs */
.gallery-tab-panel .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .gallery-tabs {
        gap: 4px;
    }

    .gallery-tab-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .gallery-tab-panel .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Category Header with View Gallery Link */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-gallery-btn {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-gallery-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.gallery-modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--light-grey);
    background: var(--white);
}

.gallery-modal-header h3 {
    margin: 0;
    color: var(--primary);
    font-size: 24px;
}

.gallery-modal-close {
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.gallery-modal-body {
    padding: 32px;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-modal-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-modal-card:hover {
    transform: scale(1.05);
}

.gallery-modal-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .view-gallery-btn {
        width: 100%;
        text-align: center;
    }

    .gallery-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .gallery-modal-header {
        padding: 16px 20px;
    }

    .gallery-modal-header h3 {
        font-size: 18px;
    }

    .gallery-modal-body {
        padding: 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-modal-card img {
        height: 150px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Enhanced Explore Collection Button */
.view-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: 50px;
    /* Pill shape for modern look */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.view-gallery-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 46, 95, 0.2);
}

.view-gallery-btn i {
    font-size: 16px;
}

.view-gallery-btn .count {
    opacity: 0.7;
    font-size: 12px;
    margin-left: 2px;
}

/* Category header adjustments */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-label {
    font-size: 24px;
    color: var(--navy);
    margin: 0;
    position: relative;
}

.category-label::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: var(--gold);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .view-gallery-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Category Cards System */
.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Make Indoor Pots span full width on desktop for impact */
.category-card[data-category="indoor"] {
    grid-column: span 2;
    height: 400px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(16, 24, 47, 0.9), rgba(16, 24, 47, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(16, 24, 47, 0.95), rgba(16, 24, 47, 0.5));
}

.category-overlay h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 16px;
    max-width: 80%;
}

.explore-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover .explore-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .categories-wrapper {
        grid-template-columns: 1fr;
    }

    .category-card[data-category="indoor"] {
        grid-column: span 1;
        height: 300px;
    }

    .category-card {
        height: 250px;
    }

    .category-overlay h3 {
        font-size: 22px;
    }
}



/* AC Section Refined v4 */
.brands-title {
    text-align: center;
    font-size: 24px;
    margin: 40px 0 30px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ac-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.brand-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.2);
    border-color: var(--gold);
    background: linear-gradient(to bottom, #fff, #fafafa);
}

.brand-card img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(80%);
    transition: all 0.4s ease;
}

.brand-card:hover img {
    filter: grayscale(0%);
}

.brand-name {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.ac-services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ac-services-col {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ac-services-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ac-services-col:hover::before {
    transform: scaleX(1);
}

.ac-services-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(43, 46, 95, 0.15);
    border-color: var(--gold);
}

.ac-services-col h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-services {
    list-style: none;
    padding: 0;
}

.ac-services li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding-left: 5px;
}

.ac-services i {
    color: var(--gold);
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 14px;
}

@media (max-width: 900px) {
    .ac-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ac-services-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ac-services-col {
        padding: 30px 25px;
    }
}

@media (max-width: 600px) {
    .ac-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brand-card {
        padding: 20px 15px;
    }

    .brand-card img {
        height: 70px;
    }
}

/* Phase 1: Critical Fixes */

/* Hide skip link unless focused (accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--primary);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Improve About section header */
.about-section .section-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.about-section .lead-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

/* Phase 2: AC Section Overhaul */

/* Larger, more prominent brand logos */
.brands-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 50px 0 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.ac-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 70px;
}

.brand-card {
    width: 160px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.brand-card img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.4s ease;
}

.brand-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.4);
}

.brand-name {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phase 3: Modern Services Cards */

.ac-services-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    border-top: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ac-services-col {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.ac-services-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.ac-services-col h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-services-col h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.ac-services {
    list-style: none;
    padding: 0;
}

.ac-services li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding-left: 5px;
}

.ac-services i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 14px;
}

@media (max-width: 900px) {
    .ac-services-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
}

/* Phase 4: Contact Form & Footer Redesign */

/* Modern Contact Form */
.footer-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.footer-form-wrapper h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #fffef8;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    margin-top: 10px;
}

/* Footer Spacing Fixes */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-title {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 35px;
    line-height: 1.2;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-form-wrapper {
        padding: 35px;
    }
}

/* Phase 5: Final Polish & Spacing Cleanup */

/* Global spacing refinements */
body {
    line-height: 1.7;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 50px 0;
}

.trading-block {
    margin-bottom: 50px;
}

.block-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.block-header h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.block-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

/* CTA Engineering better spacing */
.cta-engineering {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 60px 0;
    border-left: 5px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.cta-engineering i {
    font-size: 48px;
    color: var(--gold);
    flex-shrink: 0;
}

.cta-engineering h4 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 8px;
}

.cta-engineering p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Value items better spacing */
.value-item {
    padding: 25px;
    border-radius: 8px;
    background: white;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 40px 0;
    }

    .cta-engineering {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
}

/* =========================================
   Location Section Styles
   ========================================= */

.location-section {
    margin-top: 40px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.location-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-image:hover img {
    transform: scale(1.03);
}

.location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gold);
}

.location-badge i {
    color: var(--gold);
    font-size: 18px;
}

.location-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-map iframe {
    flex: 1;
    min-height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-btn {
    align-self: center;
    border-color: var(--primary);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.map-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.map-btn i {
    font-size: 16px;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-image img {
        height: 300px;
    }

    .location-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .location-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .location-image img {
        height: 250px;
    }
}