/*
Theme Name: Twenty Thirteen Child
Theme URI: https://wordpress.org/themes/twentythirteen/
Template: twentythirteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Tags: blog,one-column,two-columns,right-sidebar,custom-header,custom-menu,editor-style,featured-images,footer-widgets,microformats,post-formats,rtl-language-support,sticky-post,translation-ready,accessibility-ready,block-patterns
Version: 4.5.1771581312
Updated: 2026-02-20 09:55:12

*/

body {
    box-sizing: border-box;
}

:root {
    --primary: #0d6efd;
    --primary-dark: #0a4fb3;
    --deep-navy: #0b1f3f;
    --teal: #00c2a8;
    --cta: #ff6b35;
    --cta-hover: #ff914d;
    --light-bg: #f4f9ff;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --gradient-main: linear-gradient(135deg, #0d6efd, #00c2a8);
    --gradient-cta: linear-gradient(135deg, #ff6b35, #ff914d);
    --gradient-navy: linear-gradient(135deg, #0b1f3f, #1a365d);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 10px 40px rgba(13, 110, 253, 0.3);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media(min-width:767px){
.container, .container-fluid {
    max-width: 95%;
}
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-size: 2.75rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn-gradient-cta {
    background: var(--gradient-cta);
    border: none;
    color: var(--white);
    padding: 16px 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gradient-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.45);
    color: var(--white);
}

.btn-gradient-main {
    background: var(--gradient-main);
    border: none;
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
    text-decoration: none;
}

.btn-gradient-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(13, 110, 253, 0.4);
    color: var(--white);
}

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--deep-navy);
}

/* Top Bar */
.top-bar {
    background: var(--deep-navy);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-marquee {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 30px;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.top-bar-marquee span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-bar-marquee i {
    color: var(--teal);
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-contact a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-contact a.phone-link {
    color: var(--cta);
    font-weight: 600;
}

.top-bar-contact a:hover {
    color: var(--teal);
}

/* Header */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 15px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    top: 0;
}

.main-header.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.main-header.scrolled .navbar-brand {
    color: var(--deep-navy) !important;
}

.main-header .header-logo-white {
    display: block;
    transition: all 0.3s ease;
}

.main-header .header-logo-main {
    display: none;
    transition: all 0.3s ease;
}

.main-header.scrolled .header-logo-main {
    display: block;
    transition: all 0.3s ease;
}

.main-header.scrolled .header-logo-white {
    display: none;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--white) !important;
    transition: var(--transition);
}

.navbar-brand span {
    color: var(--teal);
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--white) !important;
    padding: 10px 20px !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--teal) !important;
}

.header-cta {
    background: var(--gradient-cta);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 50px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 63, 0.92) 0%, rgba(13, 110, 253, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.hero-bullets li i {
    color: var(--teal);
    font-size: 1.25rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.urgency-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--cta);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Glass Form Card */
.glass-form-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.glass-form-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.glass-form-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.glass-form-card .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.glass-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.2);
    outline: none;
}

.glass-form-card textarea.form-control {
    min-height: 100px;
    resize: none;
}

.form-submit-btn {
    width: 100%;
    background: var(--gradient-cta);
    border: none;
    color: var(--white);
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* Trust Strip */
.trust-strip {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.trust-badge:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge span {
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 0.95rem;
}

/* Manufacturing Cards */
.manufacturing-section {
    background: var(--light-bg);
}

.manufacture-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.manufacture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: var(--transition);
}

.manufacture-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 63, 0.9), rgba(13, 110, 253, 0.85));
    opacity: 0;
    transition: var(--transition);
}

.manufacture-card.capsules::before {
    background-image: url('assets/images/capsules.avif');
}

.manufacture-card.tablets::before {
    background-image: url('assets/images/tablets.avif');
}

.manufacture-card.softgels::before {
    background-image: url('assets/images/softgel-capsules.avif');
}

.manufacture-card.protein::before {
    background-image: url('assets/images/protein-powder.avif');
}

.manufacture-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.manufacture-card:hover::before,
.manufacture-card:hover::after {
    opacity: 1;
}

.manufacture-card:hover .card-content {
    color: var(--white);
}

.manufacture-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.manufacture-card:hover .card-enquire {
    opacity: 1;
    transform: translateY(0);
}

.card-content {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.card-content h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--deep-navy);
}

.manufacture-card:hover .card-content h4 {
    color: var(--white);
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.manufacture-card:hover .card-content p {
    color: rgba(255, 255, 255, 0.85);
}

.card-enquire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
}

.card-enquire:hover {
    background: var(--white);
    color: var(--primary);
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 60%;
    height: auto;
    opacity: 0.3;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.about-badge small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-list li:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.about-list li i {
    font-size: 1.5rem;
    color: var(--teal);
    flex-shrink: 0;
}

.about-list li strong {
    display: block;
    color: var(--deep-navy);
    margin-bottom: 3px;
}

.about-list li span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Products Carousel */
.products-section {
    background: var(--light-bg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    margin: 10px;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.2);
}

.product-image {
    height: 200px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -30px;
    right: -30px;
}

.product-image i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.9;
}

.product-content {
    padding: 25px;
}

.product-content h4 {
    font-size: 1.15rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

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

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.product-cta:hover {
    color: var(--cta);
    gap: 12px;
}

/* Premium Third Party Section */
.premium-section {
    position: relative;
    background: var(--deep-navy);
    padding: 120px 0;
    overflow: hidden;
}

.premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%230b1f3f" width="1200" height="800"/><circle cx="200" cy="200" r="300" fill="%230d6efd" opacity="0.1"/><circle cx="1000" cy="600" r="400" fill="%2300c2a8" opacity="0.08"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.premium-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.premium-content h2 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.glass-feature-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.glass-feature-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: var(--teal);
}

.glass-feature-box i {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.glass-feature-box p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 80px 0;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    transition: var(--transition);
}

/* .stat-box:hover .stat-number {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
.stat-number .odometer {
    font-family: 'Poppins', sans-serif;
}

.stat-suffix {
    font-size: 2rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Why Choose Us */
.why-section {
    background: var(--light-bg);
}

.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover .why-icon {
    background: var(--gradient-main);
    color: var(--white);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 168, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Contact Section */
.contact-section {
    background: var(--light-bg);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 1.75rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-item h5 {
    font-size: 1rem;
    color: var(--deep-navy);
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    margin: 0;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.contact-form-card>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

.contact-form label {
    font-weight: 500;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

/* Footer */
.main-footer {
    background: var(--deep-navy);
    padding: 70px 0 30px;
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--teal);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-main);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--teal);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links a i {
    font-size: 0.8rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--teal);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Copyright Bar */
.copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Scroll Progress Button */
.scroll-progress-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

.scroll-progress-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-progress-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scroll-progress-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-progress-btn svg circle {
    fill: none;
    stroke-width: 3;
}

.scroll-progress-btn svg .progress-bg {
    stroke: #e9ecef;
}

.scroll-progress-btn svg .progress-fill {
    stroke: var(--cta);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}

.scroll-progress-btn .progress-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--deep-navy);
    font-family: 'Poppins', sans-serif;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 998;
    gap: 10px;
}

.sticky-mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.sticky-mobile-cta .call-btn {
    background: var(--gradient-main);
    color: var(--white);
}

.sticky-mobile-cta .quote-btn {
    background: var(--gradient-cta);
    color: var(--white);
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 30px;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 4rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.form-success h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .glass-form-card {
        margin-top: 40px;
    }

    .premium-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .top-bar-contact {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding-top: 120px;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .sticky-mobile-cta {
        display: flex;
    }

    .scroll-progress-btn {
        bottom: 90px;
    }
}

/* Owl Carousel Custom */
.owl-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    background: var(--white) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
    background: var(--gradient-main) !important;
    color: var(--white) !important;
}

.owl-carousel .owl-nav button span {
    font-size: 1.5rem;
    line-height: 1;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #dee2e6;
    transition: var(--transition);
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

@media (min-width: 768px) and (max-width: 1299px) {
    .main-header.scrolled {
    padding: 0;
}
    .hero-title {
    font-size: 2.25rem;
}
.top-bar {
    font-size: 12px;
}
.nav-link {
    font-size: 14px;
}
.hero-subtitle {
    font-size: 16px;
}
.hero-bullets li {
    margin-bottom: 5px;
    font-size: 14px;
}
.btn-gradient-cta,.btn-outline-light-custom,.form-submit-btn,.glass-form-card .form-control {
    font-size: 14px;
}
.section-title,.premium-content h2 {
    font-size: 2.3rem;
}
.section-subtitle {
    font-size: 16px;
}
.card-content p {
    font-size: 14px;
}
}

@media(max-width:767px){
    .contact-info-card {
    padding: 20px;
}
.about-content h2,.premium-content h2 {
    font-size: 2rem;
}
.copyright-bar {
    padding: 20px 0 60px;
}
body, section, footer{
    overflow-x: hidden;
}
.main-header .header-logo-white,.main-header .header-logo-main {
    height: 60px !important;
}

.main-header.scrolled button.navbar-toggler {
    color: var(--deep-navy);
    border-color: var(--deep-navy) !important;
}

.main-header.scrolled button.navbar-toggler i {
    color: var(--deep-navy) !important;
}
}