/* ===== ZOTOPRO WEBSITE STYLES ===== */

/* CSS Variables for Brand Colors */
:root {
    --primary-color: #ff9a00;
    --primary-dark: #e68a00;
    --primary-light: #ffb333;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --success: #28a745;
    --danger: #dc3545;
    --info: #17a2b8;
    --warning: #ffc107;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Navigation */
.navbar {
    background-color: transparent;
    backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 1rem 0 0.5rem 0; /* Increased top padding from 0.5rem to 1rem */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
}

/* Scrolled state */
.navbar.scrolled {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 60px;
    padding: 0.25rem 0;
    min-width: 150px;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 1;
    filter: none;
}

/* Logo states - Clean implementation */
.logo-orange {
    display: block;
    filter: none !important;
}

.logo-white {
    display: none;
    filter: none !important;
}

.navbar.scrolled .logo-orange {
    display: none;
    filter: none !important;
}

.navbar.scrolled .logo-white {
    display: block;
    filter: none !important;
}

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

/* Ensure logo is always visible */
.navbar-brand img {
    height: 55px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Logo state overrides - Clean implementation */
.navbar-brand img.logo-orange {
    display: block;
    filter: none !important;
}

.navbar-brand img.logo-white {
    display: none;
    filter: none !important;
}

.navbar.scrolled .navbar-brand img.logo-orange {
    display: none;
    filter: none !important;
}

.navbar.scrolled .navbar-brand img.logo-white {
    display: block;
    filter: none !important;
}

/* Logo styling - clean and professional */
.navbar-brand {
    min-height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 600;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    background-color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background-color: var(--primary-color);
}

/* Scrolled state menu colors */
.navbar.scrolled .navbar-nav .nav-link {
    color: var(--white) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--black) !important;
    background-color: var(--white);
}

.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--black) !important;
    background-color: var(--white);
}

/* Hero Section */
.hero-section {
    background: var(--white);
    color: var(--black);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removed ::before pseudo-element for pure white background */

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 80px; /* Increased space for larger header */
}

.hero-section .row {
    align-items: center;
    min-height: calc(100vh - 120px); /* Adjusted height minus header space */
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    color: var(--black);
    text-shadow: none;
}

.hero-buttons {
    margin-bottom: 0;
}

.hero-buttons .btn {
    margin-bottom: 1rem;
}

.hero-buttons .btn:last-child {
    margin-bottom: 0;
}

.hero-image {
    text-align: center;
    padding-left: 1rem;
}

.hero-img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-5px);
}

/* Special Offers Section */
.special-offers {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Pricing Plans Section */
.pricing-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Our Valued Customers Section */
.customers-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.customers-logo-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
    contain: layout style paint;
}

.logo-track {
    display: flex;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
    transform: translateX(0);
    gap: 0;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.logo-track:hover {
    animation-play-state: paused;
}

.customer-logo {
    flex-shrink: 0;
    margin: 0 3rem;
    transition: transform 0.3s ease;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.customer-logo:hover {
    transform: scale(1.1);
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    display: block;
    will-change: filter, opacity;
}

.customer-logo:hover .logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Karahkouse Logo Special Styling */
.customer-logo.karahkouse-logo {
    background: var(--primary-color);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.customer-logo.karahkouse-logo .logo-img {
    filter: none;
    opacity: 1;
}

/* Ensure smooth animation and proper positioning */

/* Logo track container improvements */

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .customer-logo {
        margin: 0 1.5rem;
        min-width: 120px;
    }
    
    .logo-img {
        height: 60px;
        max-width: 120px;
    }
    
    .logo-track {
        animation-duration: 25s;
    }
}

/* New Pricing Cards Design */
.pricing-cards-wrapper {
    margin-top: 2rem;
}

.pricing-plan-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.monthly-plan {
    transform: scale(0.95);
    margin: 1rem 0;
}

.yearly-plan {
    transform: scale(1.05);
    margin: 0;
}

.pricing-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.yearly-plan {
    border-color: var(--primary-dark);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 154, 0, 0.05) 100%);
}

.savings-badge {
    background: var(--warning);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.plan-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-medium);
}

.setup-charge {
    color: var(--danger);
    font-weight: 600;
    font-size: 0.9rem;
}

.price-breakdown {
    margin-top: 0.5rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-feature .feature-name {
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
    flex: 1;
}

.plan-feature .feature-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: right;
    flex: 1;
    justify-content: flex-end;
}

.plan-feature .feature-status span {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.plan-feature i {
    font-size: 1rem;
    flex-shrink: 0;
}

.plan-feature span {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.plan-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pricing-features-card,
    .pricing-plan-card {
        margin-bottom: 2rem;
    }
    
    .features-list {
        gap: 0.75rem;
    }
    
    .plan-features {
        gap: 0.5rem;
    }
}

/* Terms & Privacy Pages Styling */
.terms-wrapper,
.privacy-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Terms page specific spacing */
.terms-content {
    padding-bottom: 2rem !important;
}

.terms-content .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.terms-section h3,
.privacy-section h3 {
    color: var(--black);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.terms-section p,
.privacy-section p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul,
.privacy-section ul {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terms-section li,
.privacy-section li {
    margin-bottom: 0.5rem;
}

.terms-section li:last-child,
.privacy-section li:last-child {
    margin-bottom: 0;
}

/* Page Header Styling */
.page-header {
    background: var(--white);
    position: relative;
    padding-top: 8rem;
    padding-bottom: 2rem;
}

/* Blog Post Pages Styling */
.article-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.category-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-meta .date,
.article-meta .read-time,
.article-meta .author {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.article-meta i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.featured-image {
    margin: 2rem 0;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-article h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.blog-article h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin: 1.5rem 0 1rem 0;
}

.blog-article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.blog-article .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--black);
}

.blog-article ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.tip-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.tip-box h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tip-box p {
    color: #856404;
    margin-bottom: 0;
}

.conclusion-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 10px;
}

.conclusion-box h3 {
    color: #1565c0;
    margin-bottom: 1rem;
}

.conclusion-box p {
    color: #1565c0;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.article-sidebar {
    position: sticky;
    top: 8rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-light);
}

.sidebar-card h4 {
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.related-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.related-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-posts a {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: var(--primary-color);
}

.social-share {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-share .btn {
    flex: 1;
    min-width: 40px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray-dark);
}

/* Blog breadcrumb specific styling */
.article-header .breadcrumb {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.article-header .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
}

.article-header .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-header .breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Page Styling */
.contact-hero {
    background: var(--white);
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--white);
    background: var(--primary-color);
    padding: 0.5rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-image img {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Cards */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.whatsapp-card::before {
    background: #25D366;
}

.phone-card::before {
    background: var(--primary-color);
}

.email-card::before {
    background: #007bff;
}

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

.whatsapp-card .card-icon {
    background: #25D366;
}

.phone-card .card-icon {
    background: var(--primary-color);
}

.email-card .card-icon {
    background: #007bff;
}

.contact-card h4 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
}

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

.form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--black);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 123, 0, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

/* Form Sidebar */
.form-sidebar {
    height: 100%;
}

.sidebar-card {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h5 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.sidebar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.response-item:last-child {
    border-bottom: none;
}

.time-label {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.time-value {
    color: var(--primary-color);
    font-weight: 600;
}

/* Business Info Section */
.business-info-section {
    background: var(--white);
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.card-header h4 {
    color: var(--black);
    font-weight: 700;
    margin: 0;
    font-size: 1.3rem;
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.area-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.area-item span {
    color: var(--black);
    font-weight: 500;
}

.business-hours {
    margin-top: 1rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.time-item:last-child {
    border-bottom: none;
}

.time-item .day {
    color: var(--black);
    font-weight: 600;
}

.time-item .time {
    color: var(--gray-dark);
}

.whatsapp-support {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-support i {
    font-size: 1.5rem;
    color: #25D366;
}

.whatsapp-support span {
    color: var(--black);
    font-size: 0.9rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.3;
}

.contact-cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-cta-section .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.contact-cta-section .cta-buttons {
    position: relative;
    z-index: 2;
}

.contact-cta-section .btn-outline-primary {
    border-color: var(--white);
    color: var(--white);
}

.contact-cta-section .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.contact-cta-section .cta-trust {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .form-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-highlights {
        gap: 0.75rem;
    }
    
    .highlight-item {
        font-size: 1rem;
    }
    
    .highlight-item i {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
    
    .service-areas {
        grid-template-columns: 1fr;
    }
}

.page-header .section-title {
    color: var(--black);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header .section-subtitle {
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin: 0;
}

.offer-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.offer-image {
    height: auto;
    min-height: 120px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--gray-light), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.5rem;
}

.offer-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.offer-price {
    margin-bottom: 1rem;
}

.price-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.offer-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
}

.offer-features li i {
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.offer-card .btn {
    margin-top: auto;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

/* About Section */
.about-section {
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,154,0,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,154,0,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,154,0,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,154,0,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,154,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grain)"/></svg>');
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--primary-color) !important;
    color: var(--white);
    border-radius: 20px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    margin-bottom: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
}

.about-cta {
    margin-top: 2rem;
}

.about-image {
    position: relative;
    z-index: 2;
}

.about-img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px);
}

/* 2025 Modern Animations */
.animate-section {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-section.animate-in {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0px);
}

.animate-element {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

/* Enhanced Button Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 154, 0, 0.3);
}

/* Card 3D Tilt Effects */
.service-card, .business-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.service-card:hover, .business-card:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Feature Items Magnetic Effect */
.feature-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(255, 154, 0, 0.4);
}

/* Image 3D Tilt Effects */
.hero-img, .about-img {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-img:hover, .about-img:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
}

/* Performance Optimizations */
.animate-section,
.animate-element,
.btn,
.service-card,
.business-card,
.feature-item,
.hero-img,
.about-img {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-benefit {
    background: var(--gray-light);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-benefit i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Business Types Section */
.business-types {
    background-color: var(--gray-light);
}

/* Business Cards */
.business-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.business-card h4 {
    color: var(--black);
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Coming Soon Cards */
.coming-soon-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
    max-height: 250px;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.coming-soon-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.coming-soon-card h4 {
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.coming-soon-card p {
    color: var(--gray-medium);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: var(--gray-light);
    color: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-badge .badge {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    background: var(--primary-color) !important;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-benefits {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-color);
}

.cta-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-benefit-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-benefit-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-buttons {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-trust {
    position: relative;
    z-index: 1;
}

.cta-trust p {
    margin-bottom: 0;
}

.cta-trust i {
    margin-right: 0.25rem;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-light);
    position: relative;
}

.faq-section .section-title {
    margin-bottom: 3rem;
}

.faq-section .title-decorative {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--black);
    display: block;
    margin-bottom: 0.5rem;
}

.faq-section .title-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--primary-color);
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-question h5 {
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

.faq-answer p {
    color: var(--gray-dark);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-section .title-decorative {
        font-size: 2rem;
    }
    
    .faq-section .title-bold {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .faq-card {
        padding: 1.25rem;
    }
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--black);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.footer-brand h5 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.social-links {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Social Icons in Footer */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-title {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer-divider {
    border-color: rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.footer .text-muted {
    color: rgba(0, 0, 0, 0.6) !important;
}

.footer .text-muted a {
    color: rgba(0, 0, 0, 0.6) !important;
    text-decoration: none;
}

.footer .text-muted a:hover {
    color: var(--primary-color) !important;
}

/* Page Header - Removed duplicate rule */
/* .page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
} */

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    font-size: 3rem;
}

.product-content {
    padding: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-medium);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Customer Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--black);
}

.testimonial-company {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 154, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .hero-section {
        min-height: calc(100vh - 80px);
    }
    
    .hero-section .container {
        padding-top: 60px;
    }
    
    .hero-section .row {
        min-height: calc(100vh - 100px);
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    /* About Section Mobile */
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-content {
        margin-top: 2rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-benefits {
        padding: 1.5rem;
    }
    
    .cta-benefit-item {
        margin-bottom: 1rem;
    }
    
    .service-card,
    .business-card {
        padding: 1.5rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .text-md-end {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .navbar {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-section .container {
        padding-top: 70px;
    }
    
    .hero-section .row {
        min-height: calc(100vh - 70px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    /* About Section Mobile */
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-features {
        margin-top: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 0.75rem;
    }
    
    .about-cta .btn {
        display: block;
        width: 100%;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.shadow {
    box-shadow: var(--shadow) !important;
}

.rounded-lg {
    border-radius: 16px !important;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== WHY CHOOSE ZOTOPRO SECTION STYLES ===== */
.why-choose-zotopro-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-zotopro-section .section-title {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 2.5rem; /* Same size as other section titles */
}

.why-choose-zotopro-section .section-title .text-primary {
    color: var(--primary-color) !important;
}

.why-choose-zotopro-section .section-subtitle {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Image Section */
.key-features-image {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.key-features-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    /* Background removed - transparent background */
    background: transparent;
}

.key-features-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Image Decorations */
.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.decoration-star {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: float 3s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 25%;
    right: 25%;
    animation-delay: 1.5s;
}

.decoration-plane {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 40px;
    height: 40px;
    background: var(--info);
    clip-path: polygon(0% 50%, 20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%);
    transform: rotate(45deg);
    opacity: 0.8;
    animation: fly 4s ease-in-out infinite;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h4 {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fly {
    0%, 100% {
        transform: rotate(45deg) translateX(0px);
    }
    50% {
        transform: rotate(45deg) translateX(10px);
    }
}

/* Responsive Design for Key Features */
@media (max-width: 991.98px) {
    .key-features-image {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .decoration-circle {
        width: 80px;
        height: 80px;
    }
    
    .decoration-star {
        width: 20px;
        height: 20px;
    }
    
    .decoration-plane {
        width: 30px;
        height: 30px;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Mobile layout adjustments */
    .why-choose-zotopro-section .row > .col-lg-7 {
        margin-bottom: 2rem;
    }
    
    .why-choose-zotopro-section .row > .col-lg-5 {
        margin-bottom: 2rem;
    }
    
    /* Coming Soon Cards Mobile */
    .coming-soon-card {
        min-height: 220px;
        max-height: 220px;
        padding: 1.5rem;
    }
    
    .coming-soon-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .coming-soon-card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .coming-soon-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

@media (max-width: 767.98px) {
    .why-choose-zotopro-section .section-title {
        font-size: 2rem;
    }
    
    .why-choose-zotopro-section .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
}

/* Comprehensive Responsive Design - All Devices */
/* Large Tablets (1200px and below) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .coming-soon-card {
        min-height: 200px;
        max-height: 200px;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
    
    .logo-img {
        height: 50px;
    }
}

/* Medium Tablets (992px and below) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coming-soon-card {
        min-height: 180px;
        max-height: 180px;
    }
    
    .coming-soon-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .coming-soon-card h4 {
        font-size: 1.1rem;
    }
    
    .coming-soon-card p {
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 45px;
    }
}

/* Small Tablets (768px and below) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .coming-soon-card {
        min-height: 160px;
        max-height: 160px;
        padding: 1.25rem;
    }
    
    .coming-soon-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .coming-soon-card h4 {
        font-size: 1rem;
    }
    
    .coming-soon-card p {
        font-size: 0.85rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Mobile Phones (576px and below) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .coming-soon-card {
        min-height: 140px;
        max-height: 140px;
        padding: 1rem;
    }
    
    .coming-soon-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .coming-soon-card h4 {
        font-size: 0.9rem;
    }
    
    .coming-soon-card p {
        font-size: 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .py-4 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* ===== MOBILE RESPONSIVE OPTIMIZATIONS ===== */
/* Mobile Font Size and Button Layout Changes */
@media (max-width: 768px) {
    /* Mobile Font Size Reductions */
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    
    .about-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .about-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .feature-card h4 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .feature-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .offer-card h4 {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
    }
    
    .offer-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    /* Mobile Button Layout - Single Line */
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-buttons .btn {
        flex: 1 !important;
        min-width: 0 !important;
        white-space: nowrap !important;
        font-size: 0.85rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    .hero-buttons .btn-lg {
        font-size: 0.85rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* Mobile Navigation Adjustments */
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    /* Mobile Spacing Adjustments */
    .hero-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .about-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Mobile Business Types - Force 2 Columns */
    .business-types .col-sm-6 {
        display: block !important;
        width: 50% !important;
        float: left !important;
    }
    
    .business-types .row {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .business-types .coming-soon-card {
        margin-bottom: 1rem !important;
        min-height: 180px !important;
        max-height: 180px !important;
        padding: 1rem !important;
        overflow: hidden !important;
    }
    
    .business-types .coming-soon-card h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .business-types .coming-soon-card p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        text-overflow: ellipsis !important;
    }
    
    .business-types .coming-soon-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Mobile Special Offers - Force 2 Columns */
    .special-offers .col-sm-6 {
        display: block !important;
        width: 50% !important;
        float: left !important;
    }
    
    .special-offers .row {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .special-offers .offer-card {
        margin-bottom: 1rem !important;
        min-height: 220px !important;
        max-height: none !important;
        padding: 0.75rem !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .special-offers .offer-card h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .special-offers .offer-card p,
    .special-offers .offer-features {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        overflow: visible !important;
        flex: 1 !important;
    }
    
    .special-offers .offer-features li {
        margin-bottom: 0.2rem !important;
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
        overflow: visible !important;
        word-wrap: break-word !important;
    }
    
    .special-offers .offer-image {
        height: auto !important;
        min-height: 50px !important;
        overflow: hidden !important;
        margin-bottom: 0.5rem !important;
        flex-shrink: 0 !important;
        padding: 0.25rem !important;
    }
    
    .special-offers .offer-image img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .special-offers .price-badge {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.5rem !important;
        margin-bottom: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .special-offers .btn {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.6rem !important;
        margin-top: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobile Pricing Plans - Smaller Size and Reordered */
    .pricing-section .pricing-plan-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .pricing-section .plan-header {
        margin-bottom: 1.5rem !important;
    }
    
    .pricing-section .plan-title {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }
    
    .pricing-section .plan-price {
        margin-bottom: 1rem !important;
    }
    
    .pricing-section .price-amount {
        font-size: 1.8rem !important;
    }
    
    .pricing-section .price-currency {
        font-size: 1.2rem !important;
    }
    
    .pricing-section .price-period {
        font-size: 1rem !important;
    }
    
    .pricing-section .savings-badge {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .pricing-section .price-breakdown {
        margin-bottom: 1rem !important;
    }
    
    .pricing-section .price-breakdown small {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .pricing-section .setup-charge {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .pricing-section .plan-features {
        margin-bottom: 1.5rem !important;
    }
    
    .pricing-section .plan-feature {
        margin-bottom: 0.75rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .pricing-section .feature-name {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .pricing-section .feature-status {
        font-size: 0.8rem !important;
    }
    
    .pricing-section .plan-cta .btn {
        font-size: 0.9rem !important;
        padding: 0.75rem 1.5rem !important;
    }
}

/* Extra Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.4rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        flex: none !important;
    }
    
    /* Extra Small Mobile Business Types - Maintain 2 Columns */
    .business-types .col-sm-6 {
        width: 50% !important;
        float: left !important;
    }
    
    .business-types .coming-soon-card {
        min-height: 160px !important;
        max-height: 160px !important;
        padding: 0.75rem !important;
        overflow: hidden !important;
    }
    
    .business-types .coming-soon-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .business-types .coming-soon-card h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.2 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .business-types .coming-soon-card p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        text-overflow: ellipsis !important;
    }
    
    /* Extra Small Mobile Special Offers - Maintain 2 Columns */
    .special-offers .col-sm-6 {
        width: 50% !important;
        float: left !important;
    }
    
    .special-offers .offer-card {
        min-height: 200px !important;
        max-height: none !important;
        padding: 0.6rem !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .special-offers .offer-card h4 {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.2 !important;
        overflow: visible !important;
        word-wrap: break-word !important;
    }
    
    .special-offers .offer-features li {
        font-size: 0.6rem !important;
        margin-bottom: 0.15rem !important;
        line-height: 1.1 !important;
        overflow: visible !important;
        word-wrap: break-word !important;
    }
    
    .special-offers .offer-image {
        height: auto !important;
        min-height: 40px !important;
        margin-bottom: 0.4rem !important;
        flex-shrink: 0 !important;
        padding: 0.2rem !important;
    }
    
    .special-offers .price-badge {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.4rem !important;
        margin-bottom: 0.4rem !important;
        flex-shrink: 0 !important;
    }
    
    .special-offers .btn {
        font-size: 0.65rem !important;
        padding: 0.3rem 0.5rem !important;
        margin-top: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Extra Small Mobile Pricing Plans - Even Smaller */
    .pricing-section .pricing-plan-card {
        padding: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .pricing-section .plan-header {
        margin-bottom: 1.25rem !important;
    }
    
    .pricing-section .plan-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .pricing-section .plan-price {
        margin-bottom: 0.75rem !important;
    }
    
    .pricing-section .price-amount {
        font-size: 1.5rem !important;
    }
    
    .pricing-section .price-currency {
        font-size: 1rem !important;
    }
    
    .pricing-section .price-period {
        font-size: 0.9rem !important;
    }
    
    .pricing-section .savings-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .pricing-section .price-breakdown {
        margin-bottom: 0.75rem !important;
    }
    
    .pricing-section .price-breakdown small {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .pricing-section .setup-charge {
        font-size: 0.8rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .pricing-section .plan-features {
        margin-bottom: 1.25rem !important;
    }
    
    .pricing-section .plan-feature {
        margin-bottom: 0.5rem !important;
        padding: 0.4rem 0 !important;
    }
    
    .pricing-section .feature-name {
        font-size: 0.8rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .pricing-section .feature-status {
        font-size: 0.7rem !important;
    }
    
    .pricing-section .plan-cta .btn {
        font-size: 0.8rem !important;
        padding: 0.6rem 1.25rem !important;
    }
    
    /* Mobile Footer - Reordered and Centered */
    .footer .row {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .footer .col-lg-5,
    .footer .col-lg-3,
    .footer .col-lg-4 {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer .col-lg-4:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer .social-icons {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .footer .social-icon {
        margin: 0 !important;
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: var(--primary-color) !important;
        color: var(--white) !important;
        text-decoration: none !important;
        transition: var(--transition) !important;
        font-size: 0.8rem !important;
        flex-shrink: 0 !important;
    }
    
    .footer .social-icon:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-2px) !important;
    }
    
    .footer .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer .footer-link {
        margin: 0 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px !important;
        background: var(--gray-light) !important;
        color: var(--gray-dark) !important;
        text-decoration: none !important;
        transition: var(--transition) !important;
        text-align: center !important;
        display: inline-block !important;
    }
    
    .footer .footer-link:hover {
        background: var(--primary-color) !important;
        color: var(--white) !important;
    }
    
    .footer p {
        margin-bottom: 0 !important;
        line-height: 1.5 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        text-align: center !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
        width: 100% !important;
        display: block !important;
    }
    
    /* Force mobile footer layout */
    @media (max-width: 768px) {
        .footer .container {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }
        
        .footer .row {
            margin: 0 !important;
        }
        
        .footer .col-lg-5,
        .footer .col-lg-3,
        .footer .col-lg-4 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        
        /* Force single line copyright */
        .footer .col-lg-5 p {
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            max-width: 100% !important;
            text-align: center !important;
            display: block !important;
            width: 100% !important;
        }
        
        /* Force social icons center */
        .footer .col-lg-4 .social-icons {
            justify-content: center !important;
            display: flex !important;
            align-items: center !important;
            width: 100% !important;
            margin: 0 auto !important;
        }
        
        .footer .col-lg-4 .social-icon {
            width: 32px !important;
            height: 32px !important;
            font-size: 0.8rem !important;
            margin: 0 0.25rem !important;
        }
    }
    
    /* ULTRA FORCE MOBILE FOOTER - This will definitely work */
    @media (max-width: 768px) {
        footer.footer {
            padding: 2rem 0 !important;
        }
        
        footer.footer .row {
            flex-direction: column !important;
            align-items: center !important;
            text-align: center !important;
        }
        
        footer.footer .col-lg-5,
        footer.footer .col-lg-3,
        footer.footer .col-lg-4 {
            width: 100% !important;
            margin-bottom: 2rem !important;
            text-align: center !important;
            display: block !important;
        }
        
        footer.footer .col-lg-4:last-child {
            margin-bottom: 0 !important;
        }
        
        /* Force social icons to be small and centered */
        footer.footer .social-icons {
            justify-content: center !important;
            display: flex !important;
            align-items: center !important;
            width: 100% !important;
            margin: 0 auto !important;
            gap: 0.5rem !important;
        }
        
        footer.footer .social-icon {
            width: 32px !important;
            height: 32px !important;
            font-size: 0.8rem !important;
            margin: 0 !important;
            flex-shrink: 0 !important;
        }
        
        /* Force footer links to be vertical and centered */
        footer.footer .footer-links {
            display: flex !important;
            flex-direction: column !important;
            gap: 1rem !important;
            align-items: center !important;
            width: 100% !important;
        }
        
        footer.footer .footer-link {
            margin: 0 !important;
            padding: 0.5rem 1rem !important;
            border-radius: 20px !important;
            background: var(--gray-light) !important;
            color: var(--gray-dark) !important;
            text-decoration: none !important;
            text-align: center !important;
            display: inline-block !important;
        }
        
        /* Force copyright text to be single line */
        footer.footer .col-lg-5 p {
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            max-width: 100% !important;
            text-align: center !important;
            display: block !important;
            width: 100% !important;
            margin: 0 !important;
        }
    }
}

/* Extra Small Devices (375px and below) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .coming-soon-card {
        min-height: 120px;
        max-height: 120px;
        padding: 0.75rem;
    }
    
    .coming-soon-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .coming-soon-card h4 {
        font-size: 0.85rem;
    }
    
    .coming-soon-card p {
        font-size: 0.75rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Extra Small Mobile Footer - Even More Compact */
    .footer .col-lg-5,
    .footer .col-lg-3,
    .footer .col-lg-4 {
        margin-bottom: 1rem !important;
    }
    
    .footer .social-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    
    .footer .footer-link {
        padding: 0.35rem 0.7rem !important;
        font-size: 0.8rem !important;
    }
    
    .footer p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
    }
    
    .footer .social-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-section .container {
        padding-top: 40px;
    }
    
    .hero-section .row {
        min-height: calc(100vh - 60px);
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}
