/* Base styles and resets */
:root {
    --primary: #292929;
    --secondary: #e6e6dd;
    --accent: #a8a89a;
    --text-light: #e6e6dd;
    --text-dark: #292929;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0; /* Remove scroll-padding-top as we'll handle this via JS for precise control */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--secondary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-align: center;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary);
}

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

.btn-primary:hover {
    background-color: var(--secondary); /* Change to secondary color for visibility */
    color: var(--primary);
    border-color: var(--secondary);
}

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

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary);
    border-color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.underline {
    height: 4px;
    width: 70px;
    background-color: var(--primary);
    margin: 0 auto;
    position: relative;
}

.underline::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--accent);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: underline-width 2s infinite alternate;
}

@keyframes underline-width {
    from { width: 0; }
    to { width: 40px; }
}

section {
    padding: 100px 0; /* Base padding */
    position: relative; /* Ensure proper stacking context */
    overflow: hidden; /* Prevent overflow issues */
    width: 100%;
    margin-top: 0; /* Explicitly set margin-top to 0 */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(41, 41, 41, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px; /* Increased horizontal padding for a more spacious feel */
    max-width: 1400px; /* Slightly increased max-width for balance */
    margin: 0 auto; /* Center the navbar */
    border-radius: 0 0 var(--border-radius) var(--border-radius); /* Subtle rounded corners at bottom */
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 40px; /* Add more space between logo and navigation */
    position: relative;
}

.logo h1 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-img {
    height: auto;
    width: 180px; /* Adjusted width */
    transition: var(--transition);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* Added subtle shadow to logo */
}

header.scrolled .logo-img {
    width: 150px; /* Slightly smaller on scroll */
}

.nav-menu {
    display: flex;
    gap: 40px; /* Increased spacing between nav items */
    align-items: center; /* Ensure vertical alignment */
    padding-right: 15px;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 8px 0; /* Add padding for better touch target */
    font-size: 1.05rem; /* Slightly larger font */
    letter-spacing: 0.5px; /* Improved letter spacing */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
    transform-origin: left;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #ffffff; /* Make text brighter on hover */
    transform: translateY(-2px); /* Subtle lift effect */
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px; /* Thinner bars for a more elegant look */
    margin: 6px auto;
    background-color: var(--text-light);
    transition: var(--transition);
    border-radius: 1px; /* Slightly rounded bars */
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(41, 41, 41, 0.85), rgba(41, 41, 41, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2072&q=80') no-repeat center/cover;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px; /* Reduced padding */
    margin-bottom: 0; /* Ensure no margin between sections */
    box-sizing: border-box; /* Ensure padding is included in height calculation */
    border-top: none; /* Remove border from first section */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* Added to establish stacking context */
    z-index: 2; /* Ensure content is above shapes */
}

.hero-text {
    max-width: 600px;
    position: relative; /* Added to establish stacking context */
    z-index: 2; /* Ensure text is above shapes */
}

.dynamic-text span {
    position: relative;
    display: inline-block;
}

.text-rotate {
    position: relative;
    display: inline-block;
}

.text-rotate::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--secondary);
    right: -5px;
    top: 0;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

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

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

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary);
    border-color: var(--text-light);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
    color: var(--secondary);
}

.stat-item p {
    font-size: 0.9rem;
    margin-top: 5px;
    margin-bottom: 0;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.6s ease;
    z-index: 2; /* Ensure image is above shapes */
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    margin-right: 40px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.floating-badge i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0; /* Changed from z-index: 1 to ensure shapes stay behind content */
    pointer-events: none; /* Ensure shapes don't interfere with interactions */
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: -100px;
    left: -100px;
    animation: shapePulse 15s infinite alternate;
}

.hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: -50px;
    right: 10%;
    animation: shapePulse 10s infinite alternate;
}

.hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    bottom: 20%;
    left: 10%;
    animation: shapePulse 12s infinite alternate;
}

@keyframes shapePulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.5); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    background-color: var(--secondary);
    position: relative;
    z-index: 2; /* Ensure proper stacking */
    margin-top: 0; /* Explicitly remove margin */
    padding-top: 130px; /* Increase padding instead of margin */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.about-image img {
    transition: transform 0.5s ease;
}

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

/* Enhanced About Section */
.about {
    background-color: var(--secondary);
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 130px;
    overflow: visible; /* Allow for elements to extend outside */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Increased gap */
    align-items: center;
    margin-bottom: 80px; /* Add space for timeline */
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7; /* Improved line height for readability */
}

.about-image-container {
    position: relative;
    padding: 15px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateY(5deg); /* Slight 3D effect */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
}

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

/* About values section */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 20px 15px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.value-item p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

/* About badge */
.about-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Timeline section */
.about-timeline {
    padding-top: 30px;
}

.about-timeline h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    color: var(--primary);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    display: flex;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.2);
    background-color: var(--accent);
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 15px;
    height: 15px;
    background: #fff;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -7px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -7px;
}

/* Responsive styles for the enhanced about section */
@media screen and (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 80px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-content::before {
        left: -7px !important;
        right: auto !important;
    }
}

@media screen and (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 25px;
    }
    
    .about-image-container {
        padding: 0;
    }
    
    .about-badge {
        right: 10px;
        bottom: -15px;
        padding: 8px 20px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 576px) {
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 20px;
        width: 15px;
        height: 15px;
    }
}

/* Business Section (previously Services) */
.business {
    background-color: var(--primary);
    color: var(--text-light);
    position: relative;
    z-index: 3; /* Ensure proper stacking */
    margin-top: 0; /* Explicitly remove margin */
    padding-top: 130px; /* Increase padding instead of margin */
    padding-bottom: 100px; /* Consistent bottom padding */
}

.business .section-header h2 {
    color: var(--text-light);
}

.business .underline {
    background-color: var(--text-light);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.business-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.business-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(230, 230, 221, 0.1);
    margin-bottom: 25px;
}

.business-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.business-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.business-link {
    font-weight: 600;
    display: inline-block;
    position: relative;
    color: var(--secondary);
    transition: var(--transition);
}

.business-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.business-link:hover::after {
    width: 100%;
}

/* Enhanced Business Section (previously Enhanced Services Section) */
.business {
    background-color: var(--primary);
    color: var(--text-light);
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding-top: 130px;
    padding-bottom: 100px;
}

.business .section-header h2 {
    color: var(--text-light);
}

.business .underline {
    background-color: var(--text-light);
}

.section-intro {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.business-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary);
    transition: height 0.4s ease;
}

.business-card:hover::before {
    height: 100%;
}

.business-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(230, 230, 221, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.business-card:hover .business-icon {
    background-color: rgba(230, 230, 221, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.business-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.business-badge-new {
    background-color: #6ebf8b;
    color: #fff;
}

.business-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 15px;
}

.business-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.business-card:hover h3::after {
    width: 60px;
}

.business-card p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1rem;
}

/* Business features section (previously Service features section) */
.business-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--secondary);
    font-size: 0.9rem;
    background-color: rgba(230, 230, 221, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Business CTA section (previously Service CTA section) */
.business-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-link {
    font-weight: 600;
    display: inline-block;
    position: relative;
    color: var(--secondary);
    transition: var(--transition);
    padding: 5px 0;
}

.business-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.business-link:hover::after {
    width: 100%;
}

.business-link:hover {
    color: #ffffff;
}

.business-stats {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

/* Business footer CTA (previously Services footer CTA) */
.business-action {
    margin-top: 70px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.business-action p {
    font-size: 1.2rem;
    margin: 0;
}

.business-action .btn {
    min-width: 180px;
}

/* Responsive adjustments for business section (previously services section) */
@media screen and (max-width: 991px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-card {
        padding: 35px 25px;
    }
    
    .business-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .business-card h3 {
        font-size: 1.5rem;
    }
    
    .business-action {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 576px) {
    .business-card {
        padding: 30px 20px;
    }
    
    .business-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .business-stats {
        font-size: 0.8rem;
    }
    
    .business-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* Enhanced Contact Section without form */
.contact {
    background-color: var(--primary);
    color: var(--text-light);
    position: relative;
    z-index: 4;
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact .section-header h2 {
    color: var(--text-light);
}

.contact .section-intro {
    max-width: 700px;
    margin: 30px auto 50px;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact .underline {
    background-color: var(--text-light);
}

/* Fix for contact card sizes on mobile screens */
.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed from 3 to 2 columns */
    gap: 30px;
    max-width: 800px; /* Added max-width to center the cards better */
    margin: 0 auto; /* Center the container */
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card-inner {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: var(--secondary);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 3px;
    margin-top: auto;
    display: inline-block;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-address {
    font-style: normal;
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: auto;
    text-align: center; /* Ensure centered text like the links */
    display: inline-block; /* Match display property of links */
}

/* Remove contact-social styles */
/* .contact-social {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--text-light);
}

.contact-social .social-links {
    justify-content: center;
    margin-top: 0;
}

.contact-social .social-links a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: 0 10px;
} */

/* Responsive adjustments for contact section */
@media screen and (max-width: 991px) {
    .contact-container {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on tablets */
        gap: 20px;
    }
    
    .contact-card-inner {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Change to single column on smaller screens */
        max-width: 450px; /* Further limit width for better visual on mobile */
    }
}

@media screen and (max-width: 576px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        max-width: none; /* Remove the max-width to allow full width */
        width: 100%; /* Make cards full width of their container */
        margin: 0; /* Remove auto margins */
    }
    
    .contact-card-inner {
        padding: 30px 20px;
        height: 100%; /* Ensure consistent height */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Add consistent height for content to prevent size differences */
    .contact-card p {
        min-height: 42px; /* Set a minimum height for description text */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* Footer Styles - Enhanced Version */
footer {
    background-color: var(--primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168,168,154,0.05) 0%, rgba(168,168,154,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: auto;
    width: 180px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: translateY(-3px);
}

.footer-logo p {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 0;
    opacity: 0.9;
}

.footer-about-text {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 350px;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--text-light);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Styles - Modified without newsletter section */
.footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: var(--secondary);
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.footer-column:hover h3::after {
    width: 50px;
}

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

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

.footer-links li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--secondary);
}

.footer-links li a:hover::before {
    width: 100%;
}

/* Remove newsletter styles */
/* Newsletter styles section removed */

/* Footer bottom section - Simplified */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
                rgba(168, 168, 154, 0) 0%, 
                rgba(168, 168, 154, 0.2) 50%, 
                rgba(168, 168, 154, 0) 100%);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    flex-shrink: 0;
}

.footer-bottom-left p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
    opacity: 1;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Remove footer-made-with section and related styles */
/* footer-made-with related styles removed */

@media screen and (max-width: 768px) {
    .footer-bottom-content {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 15px;
        justify-content: center;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-bottom-links a {
        border-bottom: 1px dotted rgba(230, 230, 221, 0.3);
        padding-bottom: 2px;
    }
}

/* Responsive footer - Updated for 3-column layout */
@media screen and (max-width: 1024px) {
    .footer-links-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 600px;
    }
    
    .footer-about-text {
        max-width: none;
    }
}

@media screen and (max-width: 767px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-links-container {
        gap: 20px;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 8px;
    }
    
    .newsletter-form .form-group {
        max-width: none;
    }
    
    .footer-links-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .footer-links-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-logo-img {
        width: 160px;
    }
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
        transform: none !important;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row; /* Ensure horizontal alignment */
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: row; /* Ensure horizontal alignment */
    }
    
    .about-content,
    .contact-container,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-image {
        margin-top: 20px;
        order: 1;
    }
    
    .about-text {
        order: 2;
    }
    
    .footer-links {
        margin-top: 30px;
    }
    
    section {
        padding: 80px 0;
        margin-top: 0; /* Ensure no margin on medium screens */
    }
    
    .hero {
        padding-bottom: 100px; /* Adjusted for medium screens */
    }

    .about, .business, .contact {
        padding-top: 100px; /* Consistent padding-top for all sections */
    }
}

@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 90px; /* Adjust scroll padding for mobile */
    }
    
    .hero {
        min-height: 100vh;
        height: auto; /* Allow height to adjust based on content */
        padding: 100px 0 80px; /* Adjusted for better mobile layout */
    }
    
    section {
        padding: 70px 0; /* Further reduced padding on mobile */
    }
    
    .about,
    .business,
    .contact {
        padding-top: 90px; /* Reduced padding-top on mobile */
        margin-top: 0; /* Ensure no margin on mobile */
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
        display: flex;
        align-items: flex-start;
    }
    
    .hero .container {
        margin-top: 40px;
    }
    
    .hero-image {
        max-width: 90%;
    }
    
    .floating-badge {
        right: 0;
        bottom: 10px;
        margin-right: 40px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .floating-badge i {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row; /* Keep horizontal alignment */
        gap: 15px;
        margin-top: 30px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 90px;
    }
    
    .stat-item span {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .text-rotate::after {
        height: 80%;
        top: 3px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .navbar {
        padding: 15px 25px; /* Adjusted padding for mobile */
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        margin: 15px 0;
        font-size: 1.2rem;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .logo-img {
        width: 160px; /* Adjusted for tablets */
    }
    
    .footer-logo-img {
        width: 200px; /* Adjusted for tablets */
    }
    
    .navbar {
        padding: 15px 20px; /* Smaller padding on mobile but still maintain horizontal space */
    }
    
    section {
        padding: 80px 0; /* Further reduced padding on smaller screens */
    }

    .about, .business, .contact {
        padding-top: 120px; /* Adjust for smaller screens */
    }
}

@media screen and (max-width: 576px) {
    html {
        scroll-padding-top: 80px; /* Adjust scroll padding for small mobile */
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 120px 0 80px; /* Maintain sufficient padding on very small screens */
    }
    
    section {
        padding: 70px 0 80px; /* Ensure consistent padding for all sections */
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-image {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 10px;
        margin-top: 25px;
        flex-wrap: wrap;
        flex-direction: row; /* Ensure horizontal alignment */
        justify-content: center;
    }
    
    .stat-item {
        min-width: 80px;
        flex: 1;
    }
    
    .stat-item span {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: row; /* Change to horizontal layout */
        gap: 15px;
        margin-bottom: 25px;
        flex-wrap: wrap; /* Allow wrapping if needed */
        justify-content: center;
    }
    
    .btn {
        width: auto; /* Change from 100% to auto */
        padding: 10px 20px;
        font-size: 0.95rem;
        flex: 1; /* Allow buttons to grow */
        min-width: 140px; /* Set minimum width */
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .hero-shapes .shape {
        opacity: 0.07;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }
    
    .logo-img {
        width: 140px; /* Adjusted for mobile */
    }
    
    .footer-logo-img {
        width: 180px; /* Adjusted for mobile */
    }

    .about, .business, .contact {
        padding-top: 80px; /* Further reduced padding-top on small screens */
        margin-top: 0;
    }
    
    /* Further enhance button visibility on smaller screens */
    .hero-buttons {
        /* Keep existing flex layout properties */
    }
    
    .btn-primary, .btn-secondary {
        font-weight: 600; /* Make text bolder for better visibility */
    }
    
    .btn-primary:hover {
        background-color: var(--secondary);
        color: var(--primary);
        border-color: var(--secondary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    }
}

@media screen and (max-width: 380px) {
    .hero-stats {
        flex-direction: row; /* Keep horizontal on very small screens */
        align-items: center;
        gap: 10px; /* Reduced gap for very small screens */
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 90px; /* Smaller minimum width */
        padding: 0 5px; /* Add some padding */
    }
    
    .hero-buttons {
        gap: 10px; /* Reduced gap */
    }
    
    .btn {
        padding: 8px 15px; /* Smaller padding */
        min-width: 130px; /* Smaller minimum width */
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
    
    .floating-badge {
        right: -10px;
        margin-right: 40px;
        bottom: 5px;
        padding: 5px 12px;
    }
}

@media screen and (max-height: 700px) {
    /* Additional media query for short-height screens */
    .hero {
        height: auto;
        min-height: 650px; /* Minimum height for short screens */
    }
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--secondary);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal-header {
    padding: 20px 30px;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
    color: var(--text-dark);
}

/* Coming Soon Modal Specific Styles */
.coming-soon-content {
    text-align: center;
    padding: 20px 0;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.coming-soon-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.coming-soon-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 40px auto;
}

.coming-soon-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    background-color: rgba(41, 41, 41, 0.05);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.coming-soon-features .feature-item:hover {
    transform: translateY(-3px);
    background-color: rgba(41, 41, 41, 0.08);
}

.coming-soon-features .feature-item i {
    background-color: var(--primary);
    color: var(--secondary);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.coming-soon-features .feature-item span {
    font-size: 1rem;
    color: var(--primary);
}

.coming-soon-cta {
    margin-top: 40px;
}

.coming-soon-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.coming-soon-btn {
    display: inline-block;
    min-width: 200px;
    transition: all 0.3s ease;
}

.coming-soon-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Media queries for the modal */
@media screen and (max-width: 768px) {
    .modal {
        width: 95%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-body h3 {
        font-size: 1.3rem;
    }

    .coming-soon-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .coming-soon-content h3 {
        font-size: 1.6rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .modal {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: scale(0.95);
    }
    
    .modal.active {
        transform: scale(1);
    }
    
    .modal-header {
        border-radius: 0;
        padding: 15px;
    }
    
    .modal-body {
        max-height: calc(100vh - 60px);
        font-size: 0.9rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.4rem;
    }
    
    .coming-soon-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .coming-soon-features {
        gap: 10px;
    }
    
    .coming-soon-features .feature-item {
        padding: 10px 15px;
    }
    
    .coming-soon-btn {
        min-width: 180px;
        padding: 10px 20px;
    }
}

/* Scroll to top button */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

#scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#scroll-to-top:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

#scroll-to-top i {
    font-size: 1.2rem;
}

/* Media queries for scroll to top button */
@media screen and (max-width: 768px) {
    #scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 576px) {
    #scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    #scroll-to-top i {
        font-size: 1rem;
    }
}

/* SEO-optimized heading styles */
.main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

@media screen and (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .main-heading {
        font-size: 2.2rem;
    }
}

.timezone-text {
    border-bottom: 1px dotted var(--secondary);
    cursor: help;
    position: relative;
    display: inline-block;
}

.timezone-text::before {
    content: attr(data-tooltip);
    position: absolute;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    width: max-content;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.timezone-text::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.timezone-text:hover::before,
.timezone-text:hover::after {
    visibility: visible;
    opacity: 1;
}