/* ========================================
   style.css - Alliance Global
   Global Base Styles
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #072962;
    --primary-light: #143a75;
    --primary-dark: #0a1e41;
    --accent: #b79348;
    --accent-light: #d4b96a;
    --secondary: #f6eed7;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --text-light: #888;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
    --error: #e74c3c;
    --error-bg: #fef5f5;
    --error-border: #f5c6cb;
    --success: #27ae60;
    --success-bg: #d4edda;
    --success-border: #c3e6cb;
    --whatsapp: #25d366;
}

/* ---- Reset ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---- List Reset ---- */
ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ---- Body ---- */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ---- Links ---- */
a {
    text-decoration: none;
    color: inherit;
}

/* ---- Images ---- */
img {
    max-width: 100%;
    height: auto;
}

/* ---- Headings ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ---- Section Eyebrow ---- */
.section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

/* ---- Section Title ---- */
.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Centered section headers — keep readable line length */
.text-center .section-title,
.section-header .section-title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.text-center .section-subtitle,
.section-header .section-subtitle {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(7, 41, 98, 0.3);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* ---- Product Card (Image-First) ---- */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-light);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 3;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(7, 41, 98, 0.15);
    border-color: rgba(183, 147, 72, 0.3);
}

/* Product Image */
.product-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(7, 41, 98, 0.04), rgba(183, 147, 72, 0.04));
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* Image Gradient Overlay */
.product-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(7, 41, 98, 0.5), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-img::after {
    opacity: 1;
}

/* Category Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: rgba(7, 41, 98, 0.85);
    backdrop-filter: blur(6px);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 6px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

.product-card:hover .product-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Product Content */
.product-card-body {
    padding: 20px;
}

.product-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Link */
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.product-link:hover {
    color: var(--primary);
}

.product-link:hover i {
    transform: translateX(4px);
}

/* Fallback icon (if no image) */
.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(7, 41, 98, 0.1), rgba(183, 147, 72, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: scale(1.1);
}

.product-moq {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 30px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 147, 72, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 8s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(183, 147, 72, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 6s ease-in-out infinite 1s;
}

/* Decorative dot pattern */
.page-hero .hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(183, 147, 72, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    padding: 8px 18px;
    background: rgba(183, 147, 72, 0.15);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
    animation: fadeInDown 0.8s ease forwards;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.page-title em {
    font-style: italic;
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 5px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    margin: 0 8px;
}

.breadcrumb .current {
    color: var(--accent);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   CTA SECTION (Global)
   ======================================== */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 25px 60px rgba(7, 41, 98, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 147, 72, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 8s ease-in-out infinite;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(183, 147, 72, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 6s ease-in-out infinite 1s;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 34px);
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-content p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.cta-box .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent), #d4b96a);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(183, 147, 72, 0.4);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.cta-box .btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(183, 147, 72, 0.55);
}

.cta-box .btn-gold i {
    transition: transform 0.3s ease;
}

.cta-box .btn-gold:hover i {
    transform: translateX(5px);
}

/* ========================================
   ABOUT SECTION (Homepage)
   ======================================== */
.about-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(183, 147, 72, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
}

.about-content .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-content .about-lead {
    font-size: 16.5px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-content .section-title em,
.products-section .section-title em,
.services-section .section-title em,
.testimonials-section .section-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--primary), #a3842f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #f5e6bd, #d4b96a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 26px 0 30px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 16px;
    background: linear-gradient(135deg, #ffffff, rgba(183, 147, 72, 0.06));
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(7, 41, 98, 0.12);
    border-color: rgba(183, 147, 72, 0.45);
    border-left-color: var(--accent);
}

.about-point-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(7, 41, 98, 0.25);
    transition: transform 0.3s ease;
}

.about-point:hover .about-point-icon {
    transform: scale(1.08);
}

.about-point h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    margin: 0;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.feature-item i {
    color: var(--accent);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* ========================================
   SERVICES SECTION (Homepage)
   ======================================== */
.services-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(7, 41, 98, 0.12);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================
   TESTIMONIALS SECTION (Homepage)
   ======================================== */
.testimonials-section {
    padding: 60px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(7, 41, 98, 0.12);
    border-color: var(--accent);
}

.testimonial-text {
    position: relative;
    margin-bottom: 25px;
    flex: 1;
}

.quote-icon {
    font-size: 28px;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.author-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.author-info span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--accent);
    font-size: 12px;
}

/* ========================================
   CONTACT SECTION (Homepage)
   ======================================== */
.contact-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info .section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(183, 147, 72, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
}

.contact-info .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.85;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(7, 41, 98, 0.35);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent), #d4b96a);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(183, 147, 72, 0.45);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .products-section {
        padding: 40px 0;
    }

    /* Testimonials: 3-up sirf wide screens pe — tablet par 2 columns (cards ~200px min)
       taaki container 540px ke andar fit ho jayein (koi horizontal overflow nahi) */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Services (homepage): tablet pe bhi 2 columns — 3-up 540px container mein overflow karta tha */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .page-hero {
        padding: 60px 0 25px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 30px 0px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 25px 0px;
    }

    .page-title {
        font-size: 32px;
    }

    .products-section,
    .services-section,
    .testimonials-section,
    .cta-section {
        padding: 30px 0;
    }

    .about-section,
    .contact-section {
        padding: 30px 0;
    }

    .cta-box {
        padding: 40px 25px;
        border-radius: 16px;
    }

    .cta-box .btn-gold {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }

    /* About Section Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-features {
        flex-direction: column;
        gap: 12px;
    }

    .about-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Services Section Responsive */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Section Responsive */
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
}
