:root {
    /* Color Palette */
    --primary-blue: #3C6E97;
    --primary-blue-dark: #2F597A;
    --primary-green: #4A9362;
    --primary-green-dark: #37734B;
    --bg-light: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --dark-section: #0B1121;
    
    /* Glassmorphism Utilities */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.dark-section {
    background: linear-gradient(135deg, #0B1121 0%, #1A2942 100%);
    color: var(--white);
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(60, 110, 151, 0.15), transparent 50%);
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

#about .section-title {
    font-size: 3.5rem;
}

.dark-section .section-title {
    color: var(--white);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(43, 90, 130, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 90, 130, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-text {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--primary-green);
    gap: 0.8rem;
}

.w-100 { width: 100%; }
.text-center { text-align: center; display: block; }

/* Glassmorphism Classes */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    padding: 0.8rem 1.5rem;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.navbar.scrolled {
    background-color: rgba(60, 110, 151, 0.55);
    padding: 0.8rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    top: 1rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 40px;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.navbar.scrolled .logo img {
    height: 35px;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
    flex: 2;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition-fast);
}



.nav-links a:not(.btn-primary):hover {
    color: var(--primary-green);
}

.navbar .btn-primary {
    padding: 0.8rem 1.8rem;
}

.navbar.scrolled .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.navbar.scrolled .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-fast);
}



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

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -3;
}

.slide.active {
    transform: translateX(0);
    z-index: -2;
}

.slide.previous {
    transform: translateX(-100%);
    z-index: -2;
}

.slide:not(.active):not(.previous) {
    transition: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    color: var(--white);
    max-width: 900px;
    margin: 8rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.hero-btns .btn-primary,
.hero-btns .btn-secondary {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
}

.floating-glass-card {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: max-content;
    margin: 0 auto;
}

.glass-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-weight: 500;
}

.glass-feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* About Section */
.text-center {
    text-align: center;
}

.text-center .section-title,
.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text-column .lead-text {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text-column p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-subheading {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.text-white {
    color: var(--white) !important;
}

.text-white::after {
    background: var(--white);
}

.mt-4 {
    margin-top: 2.5rem;
}

.partner-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.partner-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.partner-card i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.partner-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.partner-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-advantages-column {
    display: flex;
    align-items: center;
}

.advantages-box {
    background: linear-gradient(135deg, var(--primary-blue), #254b6b);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(43, 90, 130, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.advantages-list {
    list-style: none;
    margin-top: 2rem;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-fast);
}

.advantages-list li:hover {
    transform: translateX(5px);
}

.advantages-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.advantages-list i {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Products Section */
.products .section-title {
    font-size: 3.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

#doors-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    #doors-products .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(60, 110, 151, 0.15), 0 0 0 1px rgba(60, 110, 151, 0.1);
}

.product-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem 1.5rem;
    background: var(--white);
}

.product-card:hover .product-info {
    background: var(--white);
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Features Section */
.features .section-title {
    font-size: 3.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(62, 142, 86, 0.2), transparent 50%);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(62, 142, 86, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-glow {
    width: 70px;
    height: 70px;
    background: rgba(43, 90, 130, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-glow {
    background: rgba(43, 90, 130, 0.3);
    transform: scale(1.1);
}

.icon-glow i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    filter: drop-shadow(0 0 12px rgba(43, 90, 130, 0.9));
    z-index: 1;
    transition: color 0.4s ease;
}

.feature-card:hover .icon-glow i {
    color: var(--primary-green);
    filter: drop-shadow(0 0 15px rgba(62, 142, 86, 0.9));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
    transition: color 0.4s ease;
}

.feature-card p {
    color: #94A3B8;
    line-height: 1.6;
}

/* Location Section */
.location .section-title {
    font-size: 3.5rem;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.05));
    pointer-events: none;
}

.info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    position: relative;
}

.info-card h2 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.info-card .tagline {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.contact-details li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: rgba(60, 110, 151, 0.2);
}

.contact-details i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(60, 110, 151, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-details li:hover i {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    overflow: hidden;
}

.contact-details a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    white-space: nowrap;
}

.contact-details a:hover {
    color: var(--primary-green);
}

.contact-details span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #080D1A;
    color: var(--white);
    padding-top: 5rem;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.footer-about p {
    color: #94A3B8;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact li {
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact i {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94A3B8;
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utilities */
.mobile-only {
    display: none;
}

/* Form Styles */
.form-card {
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #f8fafc;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(60, 110, 151, 0.1);
}

textarea.form-control {
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .about-grid { gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .logo-text { font-size: 1.05rem; }
    .nav-links { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .mobile-only { display: inline-block; }
    .desktop-only { display: none; }
    .logo-text { font-size: 0.95rem; }
    
    .slide-1 { background-position: 60% center; }
    .slide-2 { background-position: 30% center; }
    .slide-3 { background-position: 80% center; }
    
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .form-card { padding: 1.5rem 1rem; }
    
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text-dark);
        font-size: 1.2rem;
    }
    
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--text-dark); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--text-dark); }
    
    .hero h1 { font-size: 2.2rem; }
    .hero .subtitle { font-size: 1rem; margin-bottom: 1rem; }
    
    .hero-btns { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
    .hero-btns .btn-primary, .hero-btns .btn-secondary { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    
    .floating-glass-card { 
        display: flex; 
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: center;
        gap: 1rem; 
        padding: 1rem; 
        width: 95%; 
        margin: 0 auto;
        border-radius: 20px;
    }
    .glass-feature { font-size: 0.85rem; }
    
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .partner-cards { flex-direction: row; gap: 1rem; }
    .partner-card { padding: 1rem; flex-direction: column; text-align: center; width: 100%; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
    .feature-card { padding: 1.5rem 1rem; }
    .feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
    .feature-card p { font-size: 0.8rem; line-height: 1.4; }
    .icon-glow { width: 50px; height: 50px; margin-bottom: 1rem; }
    .icon-glow i { font-size: 1.2rem; }
    
    .products-grid, #doors-products .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
    .product-info { padding: 1rem; }
    .product-info h3 { font-size: 1rem; margin-bottom: 0.3rem; }
    .product-info p { font-size: 0.8rem; margin-bottom: 0.5rem; }
    .btn-text { font-size: 0.85rem; }
    
    .location-wrapper { height: auto; display: flex; flex-direction: column; border-radius: 24px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); }
    .map-container { height: 250px; }
    .info-card { position: static; width: 100%; border-radius: 0 0 24px 24px; box-shadow: none; border-top: 1px solid #eee; padding: 1.5rem; }
    .contact-details li { padding: 0.8rem; gap: 0.75rem; }
    .contact-details a { font-size: 0.88rem; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-about { grid-column: 1 / -1; }
    .footer-links h3, .footer-contact h3 { font-size: 1rem; margin-bottom: 1rem; }
    .footer-links, .footer-contact { font-size: 0.85rem; }
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-glow 2s infinite;
}

.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible, .fade-left.visible, .fade-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Enquire Page Redesign */
.enquiry-split-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.enquiry-info {
    padding: 3rem;
    border-radius: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquiry-form-section {
    padding: 3rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .enquiry-split-container {
        grid-template-columns: 1fr;
    }
    
    .enquiry-info {
        border-radius: 20px 20px 0 0;
        padding: 2rem 1.5rem;
    }
    
    .enquiry-form-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    .enquiry-info {
        padding: 1.5rem 1.25rem;
    }
    .enquiry-form-section {
        padding: 1.5rem 1.25rem;
    }
    .contact-details a {
        font-size: 0.8rem;
    }
    .logo-text {
        font-size: 0.82rem;
    }
    .logo img {
        height: 32px;
    }
    .logo {
        gap: 0.5rem;
    }
}

@media (max-width: 360px) {
    .contact-details a {
        font-size: 0.72rem;
    }
    .contact-details li {
        padding: 0.6rem 0.8rem;
    }
    .logo-text {
        font-size: 0.78rem;
    }
}
