* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --primary-teal: #1a4d4d;
    --dark-teal: #0d2626;
    --light-teal: #2d6666;
    --white: #ffffff;
    --text-dark: #333333;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
    color: var(--text-dark);
    min-width: 320px;
    overflow-x: hidden;
}

/* Global responsive base font sizing */
html { font-size: 16px; }
@media (max-width: 480px) { html { font-size: 14px; } }
@media (max-width: 360px) { html { font-size: 13px; } }

/* Global typographic scaling using clamp() */
h1, .hero-title { font-size: clamp(2rem, 8vw, 4rem); line-height: 1.05; }
h2, .products h2, .about h2, .why-us h2, .features h2, .testimonials h2, .brand-section h2, .contact h2, .cta-section h2 { font-size: clamp(1.5rem, 6vw, 3rem); line-height: 1.2; }
p, .about-card p, .product-card p, .testimonial-text, .brand-card p, .feature-content-box p { font-size: clamp(0.95rem, 2.6vw, 1rem); line-height: 1.8; margin-bottom: 1rem; }

/* Prevent aggressive uppercase/letter-spacing on small screens */
@media (max-width: 768px) {
    .about h2,
    .products h2,
    .why-us h2,
    .features h2,
    .testimonials h2,
    .brand-section h2 {
        text-transform: none;
        letter-spacing: normal;
    }

    /* keep headings centered and constrained */
    .about h2, .products h2 {
        text-align: center;
        max-width: 94%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 0.5rem;
        word-break: break-word;
    }
}

.container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: rgba(13, 38, 38, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
}

.menu-toggle {
    display: flex;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0.4rem;
    z-index: 10000;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links {
    display: none;
    flex-direction: column;
    list-style: none;
    background: #0d2626 !important;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem 1rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    gap: 0.5rem;
    border-radius: 0;
    box-shadow: none;
    max-height: calc(100vh - 60px);
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
    opacity: 1 !important;
    visibility: visible !important;
    justify-content: flex-start;
    align-items: stretch;
}

body.no-scroll {
    overflow: hidden !important;
}

.nav-links.open {
    display: flex;
}

.nav-links a {
    position: relative;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease;
    display: block;
    padding: 0.65rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    margin: 0;
    border-left: 3px solid transparent;
    padding-left: 1.2rem;
    border-radius: 4px;
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    background-color: rgba(212, 175, 55, 0.15);
    border-left-color: var(--primary-gold);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: calc(100% - 2rem);
}


.nav-links.open {
    display: flex;
}

.nav-links li {
    margin: 0;
    padding: 0;
    list-style: none;
}


:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.85);
    outline-offset: 3px;
}

.nav-links a:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 60px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
}

.sun-ray {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2rem, 9vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.typed-text {
    position: relative;
    font-weight: 700;
    color: var(--primary-gold);
}

.typed-text::after {
    content: '';
    margin-left: 0;
    opacity: 0;
    animation: none;
}

@keyframes blinkCaret {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.trusted-brands {
    padding: 7rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    margin: 6rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

/* When scroll button is visible, add extra bottom spacing so it never overlaps cards */
.trusted-brands.scroll-btn-visible {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trusted-brands h2 {
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.trusted-brands p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    align-items: center;
}

.brand-logo {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.process {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, rgba(26, 77, 77, 0.92) 0%, rgba(13, 38, 38, 0.92) 100%);
    margin: 6rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process h2 {
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.process p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.process-step {
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    transition: transform 0.3s ease, background 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.14);
}

.step-number {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--dark-teal);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.faq {
    padding: 7rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    margin: 6rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.faq h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-teal);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(26, 77, 77, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.75rem;
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.75rem;
    transition: max-height 0.45s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 1000px;
    padding: 1.5rem 1.75rem 1.75rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.9;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    display: block;
}

.stat-text {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, rgba(26, 77, 77, 0.98) 0%, rgba(13, 38, 38, 0.98) 100%);
    margin: 6rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
}

.why-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-10px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.stat-card p {
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 7rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    margin: 6rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-bg {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.support-card {
    cursor: pointer;
}

.feature-content-box {
    position: relative;
    z-index: 10;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transition: var(--transition);
}

.feature-card:hover .feature-content-box {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.feature-content-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.feature-content-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive typography and improved wrapping for mobile */
.about h2,
.products h2,
.brand-section h2,
.why-us h2,
.features h2,
.testimonials h2,
.cta-section h2,
.contact h2 {
    font-size: clamp(1.6rem, 5vw, 3rem);
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: break-word;
}

.about-card h3,
.product-card h3,
.feature-content-box h3,
.testimonial-author h4,
.brand-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.hero-description,
.product-card p,
.about-card p,
.testimonial-text,
.brand-card p,
.feature-content p,
.faq-answer p,
.why-us p {
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    color: var(--dark-teal);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: perspective(1000px) rotateX(0deg);
}

.cta-button:hover {
    transform: perspective(1000px) rotateX(10deg) translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

/* 3D Card Effect */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(20px);
}

.card-3d:hover::before {
    opacity: 1;
}

/* About Section */
.about {
    padding: 7rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin: 6rem 2rem;
    box-shadow: var(--shadow);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(45, 102, 102, 0.1) 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card h3 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--text-dark);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.about-card:hover::before {
    opacity: 0.05;
}

/* Products Section */
.products {
    padding: 7rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    margin: 6rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.products h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-teal);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--dark-teal);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    color: var(--dark-teal);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.product-card {
    position: relative;
}

.product-card:hover .product-badge {
    opacity: 1;
    transform: scale(1);
}

.products h2 + .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-top: -2rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.2) rotateY(360deg);
    animation: spin 0.6s ease-in-out;
}

@keyframes spin {
    0% { transform: scale(1) rotateY(0deg); }
    50% { transform: scale(1.2) rotateY(180deg); }
    100% { transform: scale(1.2) rotateY(360deg); }
}

.product-image {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: contain;
    border-radius: 1.25rem;
    margin-bottom: 1rem;
    background: #ffffff;
    padding: 14px;
    box-sizing: border-box;
    border: 6px solid var(--primary-gold);
    box-shadow: 0 28px 60px rgba(0,0,0,0.45), 0 10px 30px rgba(0,0,0,0.2), inset 0 0 0 6px rgba(255,255,255,0.02);
    z-index: 60;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.product-card:hover .product-image {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 12px 36px rgba(0,0,0,0.25);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.product-card p {
    line-height: 1.8;
    opacity: 0.95;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    margin: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input-wrapper input {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: var(--transition);
}

.newsletter-input-wrapper input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.newsletter-input-wrapper button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    color: var(--dark-teal);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.newsletter-form .form-message {
    display: none;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin: 1rem 0 0;
    color: var(--white);
    background: rgba(13, 38, 38, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-form .form-message.success {
    display: block;
    background: rgba(212, 175, 55, 0.16);
    color: var(--primary-gold);
    border-color: rgba(212, 175, 55, 0.4);
}

.newsletter-form .form-message.error {
    display: block;
    background: rgba(255, 70, 70, 0.12);
    color: #ffe5e5;
    border-color: rgba(255, 102, 102, 0.4);
}

.newsletter-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Brand Section */
.brand-section {
    padding: 6rem 2rem;
    padding: 6rem 2rem  calc(32px + env(safe-area-inset-bottom));
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    margin: 3.5rem 2rem 6rem; /* reduce top gap, add larger bottom gap */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.brand-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.brand-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brand-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    color: var(--dark-teal);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.brand-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
}

.brand-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-icon {
    transform: scale(1.2) rotateY(360deg);
    animation: spin 0.6s ease-in-out;
}

.brand-card h3 {
    color: var(--primary-teal);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.brand-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, rgba(13, 38, 38, 0.95) 0%, rgba(26, 77, 77, 0.95) 100%);
    margin: 6rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    border-left: 4px solid var(--primary-gold);
    padding-left: 1.5rem;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author h4 {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    margin: 6rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--dark-teal);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(13, 38, 38, 0.9);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--dark-teal);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(13, 38, 38, 0.8);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--dark-teal);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--dark-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-secondary:hover {
    background: var(--dark-teal);
    color: var(--primary-gold);
    transform: translateY(-5px);
}

/* Contact Section */
.contact {
    padding: 7rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    margin: 6rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(45, 102, 102, 0.15) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    text-align: center;
    position: relative;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: scale(1.3) rotate(20deg);
}

.info-card h3 {
    color: var(--primary-teal);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.info-card p {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.phone-card,
.email-card {
    cursor: pointer;
}

.info-card:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 5px;
}

.info-card a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-form {
    background: linear-gradient(135deg, rgba(26, 77, 77, 0.95) 0%, rgba(13, 38, 38, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-heading h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.form-heading p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem; /* reduce vertical whitespace before logos */
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.5rem;
}

.form-message {
    border-radius: 14px;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--primary-gold);
    display: block;
}

.form-message.error {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 102, 102, 0.4);
    color: #ffe5e5;
    display: block;
}

/* Owner Section */
.owner {
    padding: 4rem 2rem;
    margin: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.owner-card {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.owner-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    font-weight: bold;
    color: var(--dark-teal);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.owner-card:hover .owner-circle {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.owner-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.owner-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.owner-tagline {
    font-style: italic;
    opacity: 0.85;
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    margin: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--dark-teal);
    transform: translateY(-3px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffeb3b 100%);
    color: var(--dark-teal);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    z-index: 11000; /* high so visible above content but we'll offset it on mobile */
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Responsive Design */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        max-height: none;
        overflow: visible;
        flex-direction: row;
        gap: 2rem;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        padding: 0;
        white-space: normal;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 3rem;
        margin-bottom: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .product-filters {
        flex-direction: row;
        align-items: center;
    }

    .newsletter-input-wrapper {
        flex-direction: row;
    }

    .footer-content {
        grid-template-columns: 1fr auto;
        gap: 3rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .about h2,
    .products h2,
    .contact h2,
    .brand-section h2,
    .why-us h2,
    .features h2,
    .testimonials h2,
    .cta-section h2 {
        font-size: 3rem;
    }

    .about-grid,
    .products-grid,
    .contact-info,
    .brand-grid,
    .stats-showcase,
    .features-list,
    .features-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .feature-item {
        flex-direction: row;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: auto;
    }

    .sun-ray {
        width: 600px;
        height: 600px;
        right: -10%;
    }
}

/* Mobile: ensure scroll button doesn't overlap content and respects safe-area */
@media (max-width: 430px) {
    .scroll-to-top {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
        right: 1rem;
        /* keep at least 80px from bottom; account for safe-area inset too */
        bottom: clamp(80px, calc(32px + env(safe-area-inset-bottom)), 160px);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
    }

    /* Add extra bottom spacing to trusted brands so last card isn't hidden */
    .trusted-brands {
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
    }

    /* Ensure final brand/logo has extra safe margin */
    .brand-logos > *:last-child {
        margin-bottom: calc(32px + env(safe-area-inset-bottom));
    }

    /* Reduce excessive empty space above section content */
    .brand-section {
        padding-top: 3.5rem;
    }
}

/* Ensure cards are fully visible on small widths */
@media (max-width: 430px) {
    .brand-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .brand-logo {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Additional mobile fixes: prevent horizontal overflow, stack elements, and wrap long text */
@media (max-width: 768px) {
    html, body, .container, main, section, footer {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-content {
        max-width: 100%;
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.4rem;
        line-height: 1;
    }

    .menu-toggle {
        display: flex;
        z-index: 1200;
    }

    /* Mobile menu - compact and scrollable */
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #0d2626 !important;
        padding: 0.5rem 0.75rem 1rem;
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
        border-radius: 0;
        gap: 0.3rem;
        flex-direction: column;
        font-size: 0.95rem;
        z-index: 9999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 0.6rem 0.8rem;
        padding-left: 1rem;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 600;
        margin: 0;
        border-left: 3px solid transparent;
        border-radius: 4px;
    }

    /* Newsletter: stack input and button and make full width */
    .newsletter-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .newsletter-input-wrapper input,
    .newsletter-input-wrapper button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
    }

    .newsletter-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 1rem;
    }

    /* Contact: single column stack, info cards first, then form */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        align-items: stretch;
    }

    .contact-info {
        order: 1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .contact-form {
        order: 2;
        width: 100%;
        padding: 1.25rem;
    }

    /* Ensure cards fit and do not cause horizontal scroll */
    .info-card,
    .product-card,
    .brand-card,
    .testimonial-card,
    .faq-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Prevent email and long text from overflowing their cards */
    .info-card p,
    .info-card a,
    .contact-form p,
    .testimonial-text,
    .brand-card p {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Reduce padding on large sections for mobile */
    .cta-section,
    .contact,
    .newsletter,
    .faq,
    .products,
    .about,
    .features,
    .process,
    .brand-section,
    .testimonials,
    .owner {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 3.5rem;
    }

    .contact h2,
    .about h2,
    .products h2,
    .brand-section h2,
    .why-us h2,
    .features h2,
    .testimonials h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .owner {
        padding: 1.5rem;
    }

    .cta-buttons,
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
    }

    /* Force one-column card layout and reduce padding for smaller screens */
    .about-grid,
    .products-grid,
    .testimonials-grid,
    .brand-grid,
    .features-grid,
    .stats-showcase,
    .features-list,
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .about-card,
    .product-card,
    .testimonial-card,
    .feature-card,
    .brand-card,
    .process-step,
    .info-card {
        width: 100%;
        max-width: 100%;
        padding: 1.8rem 1.4rem;
        box-sizing: border-box;
        min-height: auto;
    }

    .feature-card {
        height: auto;
    }

    .about-card {
        padding: 1.8rem 1.5rem;
    }

    .product-card {
        padding: 1.8rem 1.5rem;
    }

    .product-icon {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.85rem;
    }

    .product-card p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .testimonial-card {
        padding: 1.8rem 1.4rem;
    }

    .testimonial-text {
        font-size: 0.98rem;
        line-height: 1.75;
        padding-left: 1.2rem;
        margin-bottom: 1rem;
    }

    .testimonial-author h4 {
        font-size: 1.05rem;
    }

    .feature-content-box {
        padding: 1.8rem 1.5rem;
    }

    .feature-content-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .feature-content-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 1.8rem;
    }

    .why-us,
    .about,
    .products,
    .features,
    .testimonials,
    .process,
    .brand-section,
    .faq,
    .newsletter,
    .cta-section,
    .contact {
        padding: 2rem 1rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .newsletter {
        padding: 2.5rem 1rem;
    }

    .cta-section,
    .faq,
    .products,
    .about,
    .features,
    .process,
    .brand-section,
    .testimonials,
    .owner {
        padding: 2rem 1rem;
    }
}

/* Extra mobile refinements to eliminate heading overflow and tighten cards */
@media (max-width: 768px) {
    .about h2,
    .products h2,
    .why-us h2,
    .features h2,
    .testimonials h2,
    .brand-section h2,
    .contact h2,
    .cta-section h2 {
        text-transform: none;
        letter-spacing: normal;
        padding: 0 0.75rem;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        word-break: break-word;
        hyphens: auto;
    }

    h2 {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
        line-height: 1.2;
    }

    .about-card p,
    .product-card p,
    .testimonial-text,
    .brand-card p,
    .feature-content-box p {
        font-size: clamp(0.95rem, 2.7vw, 1rem);
        line-height: 1.65;
    }

    .about-card,
    .product-card,
    .testimonial-card,
    .brand-card,
    .feature-card,
    .info-card,
    .process-step {
        width: 100%;
        max-width: 100%;
        padding: 1.4rem 1.2rem;
        border-radius: 14px;
        min-height: auto;
    }

    .about-grid,
    .products-grid,
    .testimonials-grid,
    .brand-grid,
    .features-grid,
    .stats-showcase,
    .features-list,
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .about-card {
        padding: 1.6rem 1.3rem;
    }

    .about-card h3,
    .product-card h3,
    .feature-content-box h3,
    .testimonial-author h4,
    .brand-card h3 {
        font-size: clamp(1.15rem, 3vw, 1.4rem);
        line-height: 1.2;
    }

    .feature-card {
        height: auto;
    }

    .feature-card .feature-content-box {
        padding: 1.4rem 1.3rem;
        min-height: auto;
        justify-content: flex-start;
    }

    .feature-content-box h3 {
        margin-bottom: 0.75rem;
    }

    .product-card h3 {
        font-size: clamp(1.15rem, 3vw, 1.35rem);
        margin-bottom: 0.8rem;
    }

    .product-card p {
        font-size: clamp(0.95rem, 2.7vw, 1rem);
        line-height: 1.7;
        margin-bottom: 0;
    }

    .product-icon {
        font-size: 2.7rem;
        margin-bottom: 0.9rem;
    }

    .testimonial-card {
        padding: 1.6rem 1.3rem;
    }

    .testimonial-text {
        font-size: clamp(0.95rem, 2.7vw, 1rem);
        line-height: 1.75;
        padding-left: 0.8rem;
        margin-bottom: 0.9rem;
        border-left: 3px solid var(--primary-gold);
    }

    .testimonial-author h4 {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .testimonial-author p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
    }

    .cta-button-primary,
    .cta-button-secondary,
    .newsletter-input-wrapper input,
    .newsletter-input-wrapper button {
        width: 100%;
    }

    .hero-description,
    .hero-tagline,
    .trusted-brands p,
    .process p,
    .brand-tagline,
    .footer-section p,
    .info-card p {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .why-us,
    .about,
    .products,
    .features,
    .testimonials,
    .process,
    .brand-section,
    .faq,
    .newsletter,
    .cta-section,
    .contact {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-stats {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .scroll-to-top {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .card-3d {
        transform: none;
    }

    img,
    svg {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Fallback class to ensure mobile fixes apply when media queries might not trigger in some environments (applied by JS) */
.mobile-fix .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem 1rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    background: #0d2626 !important;
    z-index: 9999;
    max-height: calc(100vh - 60px);
    gap: 0.3rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-fix .nav-links a {
    padding: 0.6rem 0.8rem;
    padding-left: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    border-left: 3px solid transparent;
    border-radius: 4px;
}

.mobile-fix .contact-grid {
    grid-template-columns: 1fr !important;
}

.mobile-fix .newsletter-input-wrapper {
    flex-direction: column;
}

.mobile-fix .newsletter-input-wrapper input,
.mobile-fix .newsletter-input-wrapper button {
    width: 100%;
    max-width: 100%;
}

.mobile-fix .info-card,
.mobile-fix .product-card,
.mobile-fix .brand-card,
.mobile-fix .testimonial-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-fix html,
.mobile-fix body,
.mobile-fix .container {
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure break-domain also breaks when JS forces mobile-fix class */
.mobile-fix .break-domain {
    display: block !important;
}

/* Break email domain onto new line on mobile */
.break-domain {
    display: inline;
}

@media (max-width: 768px) {
    .break-domain {
        display: block;
    }
}

/* Footer follow section styling */
.footer-follow {
    text-align: center;
    padding: 1rem 2rem 2rem;
}

.footer-follow h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.footer-follow .social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}
