[data-theme="dark"] .theme-toggle .sun-icon {
    stroke: white;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    fill: var(--text-light);
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }
}

[data-theme="dark"] .hero-badge {
    color: var(--third);
}

/* Root Variables */
:root {
    /* Light Mode Colors (Default) */
    --primary: #FF5A5F;
    --secondary: #00aeef;
    --third: #00c4a8;
    --accent: #FFD700;
    --bg-light: #ffffff;
    --bg-light-secondary: #f8f9fa;
    --bg-light-tertiary: #f0f1f3;
    --text-dark: #0a0a0a;
    --text-gray: #495057;
    --text-light-gray: #6c757d;
    --border-color: #e9ecef;
    --card-bg: #ffffff;
    --card-border: #dee2e6;
    --header-bg: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-light: #0f0f0f;
    --bg-light-secondary: #1a1a1a;
    --bg-light-tertiary: #242424;
    --text-dark: #ffffff;
    --text-gray: #b0b0b0;
    --text-light-gray: #808080;
    --border-color: #2a2a2a;
    --card-bg: #1a1a1a;
    --card-border: #2a2a2a;
    --header-bg: rgba(15, 15, 15, 0.95);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background-color: var(--primary);
    color: white;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Cursor */
.cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {

    .cursor,
    .cursor-dot {
        display: block;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

/* Light mode colors */
.theme-toggle .moon-icon {
    fill: #333333;
}

/* Dark mode colors */
[data-theme="dark"] .theme-toggle {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    fill: #ffffff;
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(-90deg);
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    z-index: 1000;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 1rem 2rem;
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 900px;
    /* Keeps menu items close to logo */
    margin: 0 auto;
}

/* Logo */
.logo-wrapper {
    padding: 0 3rem;
    /* Increased padding to push menu items closer */
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    height: 70px;
}

/* Navigation Menus */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    /* Reduced from 2rem for closer spacing */
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu-left {
    margin-right: auto;
}

.nav-menu-right {
    margin-left: auto;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    width: 40px;
    height: 40px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px auto;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 19px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 28px;
}

.mobile-menu-toggle.active span {
    background-color: var(--primary);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 19px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    width: 100%;
    max-width: 280px;
}

.mobile-nav-menu li {
    width: 100%;
}

.mobile-nav-menu a {
    display: block;
    padding: 1.2rem 2rem;
    background-color: var(--bg-light-secondary);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-light-secondary);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 3rem;
    background-color: #f8f8f8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .hero {
    background-color: #0f0f0f;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(245, 245, 245, 0.96) 0%,
            rgba(245, 245, 245, 0.93) 50%,
            rgba(245, 245, 245, 0.96) 100%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .hero-bg-overlay {
    background: linear-gradient(to bottom,
            rgba(15, 15, 15, 0.97) 0%,
            rgba(15, 15, 15, 0.94) 50%,
            rgba(15, 15, 15, 0.97) 100%);
}

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.hero-badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

[data-theme="dark"] .hero-badge {
    color: var(--primary);
    opacity: 0.8;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero-title span {
    color: var(--primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    letter-spacing: 0.02em;
    display: block;
    margin-top: 0.2rem;
    text-shadow: 0 4px 20px rgba(255, 90, 95, 0.2);
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* Clean Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #ff4449;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 90, 95, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.315);
    color: var(--text-dark);
    border-color: var(--bg-light-secondary);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

[data-theme="dark"] .hero-title {
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .hero-tagline {
    color: var(--text-light-gray);
}

[data-theme="dark"] .hero-description {
    color: var(--text-gray);
}

[data-theme="dark"] .btn-secondary {
    color: var(--text-light);
    border-color: var(--text-gray);
}

[data-theme="dark"] .btn-secondary:hover {
    color: var(--primary);
    border-color: var(--primary);
}



/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-light-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Credentials Card */
.credentials-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

.credentials-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--third));
}

.credentials-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--bg-light-secondary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.credentials-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.credentials-divider {
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin: 1.5rem auto;
}

.credentials-list {
    list-style: none;
    margin-bottom: 2rem;
}

.credentials-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 1rem;
}

.credentials-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.credentials-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.credentials-contact {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-card.featured {
    border-color: var(--primary);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--bg-light-secondary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: white;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--bg-light-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.service-card.featured .service-tag {
    background-color: var(--primary);
    color: white;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--bg-light-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    
    border: 1px solid var(--card-border);
    padding: 0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
}

.pricing-ribbon {
    position: absolute;
    top: 15px;
    right: -25px;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
}

.pricing-header {
    padding: 3rem 2rem 2rem;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-gray);
}

.pricing-amount .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
}

.pricing-body {
    background-color: var(--card-bg);
    padding: 2rem;
    flex-grow: 1;
}

.pricing-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-footer {
    background-color: var(--card-bg);
    padding: 1.5rem 2rem;
    
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--bg-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.pricing-card.featured .pricing-badge {
    background-color: var(--primary);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    padding-left: 2rem;
}

.testimonial-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--bg-light-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary);
}

.info-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background-color: var(--card-bg);
    padding: 3rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    margin-top: 8.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-gray);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -0.75rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.form-group input:focus~.form-line,
.form-group textarea:focus~.form-line {
    width: 100%;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 90, 95, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background-color: var(--bg-light-secondary);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    background-color: var(--card-bg);
}

.footer-info p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure 4 columns on desktop */
@media (min-width: 969px) {
    .pricing-container {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Mobile Responsive */
@media (max-width: 968px) and (min-width: 769px) {
    .pricing-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .price-card {
        padding: 1.5rem 1rem;
    }

    .price-title {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .nav-container {
        justify-content: space-between;
    }

    .logo-wrapper {
        padding: 0;
        margin-right: auto;
    }
}

@media (max-width: 968px) {
    .header {
        padding: 1rem 1.5rem;
    }



    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 0;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
        /* Increased from 5rem for header clearance */
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-title-top {
        font-size: 2.5rem;
    }

    .hero-title-main {
        font-size: 4.5rem;
    }

    .hero-title-bottom {
        font-size: 3.5rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 280px;
    }

    .feature-icon {
        font-size: 1.25rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }

    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        justify-content: space-between;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Keep pricing at 2 columns on tablets */
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .theme-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .hero-title-main {
        font-size: 3.5rem;
    }

    .hero-title-bottom {
        font-size: 2.5rem;
    }

    .hero-title-top {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    .section-tag-about{
        font-size: 2rem;
        text-align: center;
    }
    .credentials-card-small{
        margin-top: 0;
    }
    

    .credentials-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
    .contact-form-small{
        margin-top: 0;
    }
}

/* Hero Content Padding for tablets */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .price-card {
        padding: 1.5rem 1rem;
    }

    .hero-content {
        padding: 2.5rem 2rem;
    }
}