
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
    --primary: #1A1A1A;
    --primary-light: #2C2C2C;
    --secondary: #C41E3A;
    --accent: #E8A844;
    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;
    --text-light: #94A3B8;
    --background: #FFFFFF;
    --background-alt: #F5F5F5;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

/* Header - Modern Glass Effect */
.header {
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 56px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

/* Override WordPress custom logo styles */
.custom-logo {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* Override WordPress custom logo in footer */
.footer-logo .custom-logo {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item,
.menu-item {
    position: relative;
    list-style: none;
}

.nav-menu a,
.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a::after,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover,
.nav-link:hover {
    color: var(--primary);
}

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

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow,
.menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu,
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.5rem;
    list-style: none;
}

.nav-item:hover .dropdown-menu,
.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: var(--background-alt);
    color: var(--primary);
    border-left-color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    width: 28px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 0;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-menu .menu-item {
    list-style: none;
}

.mobile-nav-link,
.mobile-nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 1.25rem 2rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav-menu a:hover {
    background: var(--background-alt);
    border-left-color: var(--secondary);
    color: var(--secondary);
}

.login-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.9375rem;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.login-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.login-btn svg {
    width: 18px;
    height: 18px;
}

/* Hero Section - Modern Gradient */
.hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 100%);
    padding: 12rem 0 8rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: center;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.3;
}

.cta-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1.125rem 2.25rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-link {
    margin-top: 1rem;
}

.path-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.path-link:hover {
    color: white;
    gap: 0.75rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-main {
    width: 100%;
    max-width: none;
    height: 600px;
    background: transparent;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.phone-mockup-main:hover {
    transform: scale(1.02);
}

.phone-screen-main {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.app-header-main {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
}

.app-status {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-icon {
    font-size: 1.1rem;
}

.mountain-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

.mountain-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    width: fit-content;
}

.star {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: starPulse 2s ease-in-out infinite;
}

.star:nth-child(1) {
    animation-delay: 0s;
}

.star:nth-child(2) {
    animation-delay: 0.1s;
}

.star:nth-child(3) {
    animation-delay: 0.2s;
}

.star:nth-child(4) {
    animation-delay: 0.3s;
}

.star:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.property-stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.refresh-icon {
    font-size: 1.2rem;
    color: var(--secondary);
}

.property-count {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.property-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 8rem 0 6rem;
    margin-top: 0;
    text-align: center;
}

.page-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

/* Services Section Styles */
.services-section {
    padding: 5rem 0;
    background: var(--background);
}

.services-section:nth-child(even) {
    background: var(--background-alt);
}

.service-category {
    max-width: 1200px;
    margin: 0 auto;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.service-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.service-category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.service-category-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin: 0;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.services-section:nth-child(even) .service-detail-card {
    background: var(--background);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--background-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-card-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    gap: 0.75rem;
    color: var(--primary);
}

/* Modern Services Section */
.modern-services {
    padding: 6rem 0 8rem;
    background: var(--background);
}

.modern-service-block {
    margin-bottom: 6rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border);
}

.modern-service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.modern-service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.modern-service-icon-wrapper {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.modern-service-icon-wrapper:hover {
    transform: scale(1.05);
}

.modern-service-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin: 0;
}

.modern-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.modern-service-item {
    background: var(--background-alt);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary);
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.modern-service-item:hover::before {
    height: 100%;
}

.item-number {
    position: absolute;
    top: -16px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
}

.modern-service-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-right: 3.5rem;
}

.modern-service-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Intro Text Section */
.intro-text-section {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.intro-text-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: var(--background-alt);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 400px;
}

.team-photo {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: left;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 8rem 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-choose-card {
    background: var(--background-alt);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: white;
    border-color: var(--secondary);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 100%);
    border-radius: var(--radius-md);
    color: white;
    box-shadow: var(--shadow-md);
}

.why-choose-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

.why-choose-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--background-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem auto 0;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    text-decoration: none;
    display: block;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-image svg {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 160px;
    transition: transform 0.3s ease;
}

.service-image svg rect,
.service-image svg path,
.service-image svg circle {
    stroke: var(--secondary) !important;
}

.service-image svg rect[fill]:not([fill="none"]),
.service-image svg path[fill]:not([fill="none"]),
.service-image svg circle[fill]:not([fill="none"]) {
    fill: var(--secondary) !important;
}

.service-image svg rect[fill="#FFF9F0"],
.service-image svg path[fill="#FFF9F0"] {
    fill: rgba(196, 30, 58, 0.1) !important;
}

.service-card:hover .service-image svg {
    transform: scale(1.1);
}

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

.service-content {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: transparent;
}

.service-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    background: transparent;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.service-arrow {
    width: 36px;
    height: 36px;
    background: var(--background-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-arrow {
    background: var(--secondary);
    color: white;
    transform: rotate(-45deg);
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-btn-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1.125rem 2.25rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.office-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.office-img:hover {
    transform: scale(1.02);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: var(--background);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--background-alt);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

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

.pricing-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.pricing-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.marketing-content {
    max-width: 1000px;
    margin: 3rem auto 0;
    text-align: center;
}

.marketing-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.marketing-text:last-child {
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    width: 100%;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.testimonial-card {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: left;
    min-height: 280px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-avatar-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.author-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.25rem;
}

.author-stars svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.author-role {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.carousel-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.dot.active {
    background: white;
    width: 14px;
    height: 14px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Blog, FAQ, Final CTA sections */
.blog {
    padding: 8rem 0;
    background: var(--background);
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.blog-card {
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

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

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    margin-bottom: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--primary);
}

.read-more {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.read-more:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: var(--background-alt);
}

.faq-items {
    width: 100%;
    margin: 4rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    padding-left: 1rem;
}

.faq-question {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    cursor: pointer;
    color: var(--primary);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: var(--background);
    padding: 8rem 0;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.final-cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
}

.final-cta-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.final-cta-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Contact Section */
.contact-section {
    background: var(--background);
    padding: 8rem 0;
    color: var(--text-primary);
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.contact-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.office-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.office-card {
    background: var(--primary);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.office-card:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.office-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.office-detail {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.office-detail:last-child {
    margin-bottom: 0;
}

.office-icon {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.office-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.office-value {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
}

/* Company Page Styles */
.company-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 8rem 0 6rem;
    margin-top: 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.company-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.company-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.company-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.company-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.company-stats-section {
    padding: 5rem 0;
    background: var(--background);
}

.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.company-stat-card {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.company-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.company-stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-stat-label {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.company-values {
    padding: 8rem 0;
    background: var(--background);
}

.values-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.values-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.values-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--background-alt);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: white;
    border-color: var(--secondary);
}

.value-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.company-timeline {
    padding: 8rem 0;
    background: var(--background-alt);
}

.timeline-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 80px;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--accent) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    border: 4px solid var(--background-alt);
    box-shadow: 0 0 0 4px var(--secondary);
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.timeline-year {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.timeline-heading {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.timeline-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Footer - Modern Professional Design */
.footer {
    background: #ffffff;
    color: var(--text-primary);
    padding: 0;
    border-top: 1px solid var(--border);
    width: 100%;
}

.footer > .container {
    max-width: 100%;
    padding: 0 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 3rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-partners {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}

.partner-badge {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-width: auto;
    transition: opacity 0.3s ease;
}

.partner-badge:hover {
    opacity: 0.7;
    transform: none;
}

.footer-column h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: flex-start;
    line-height: 1.6;
    position: relative;
}

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

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

.footer-link:hover::before {
    width: 100%;
}

.footer-bottom {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 0;
    width: 100%;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    padding: 0 4rem;
}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: white;
    font-weight: 500;
    width: 100%;
}

.footer-credit svg {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
}

.footer-legal .footer-link {
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    position: relative;
}

.footer-legal .footer-link::before {
    display: none;
}

.footer-legal .footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 1px;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-legal .footer-link:hover {
    color: white;
}

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

.footer-legal span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Gallery Slider Section */
.gallery-section {
    position: relative;
}

.gallery-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.gallery-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 10;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.gallery-nav:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.gallery-dot.active {
    background: var(--secondary);
    width: 14px;
    height: 14px;
}

.gallery-dot:hover {
    background: var(--secondary);
    opacity: 0.7;
}

/* Partner Logo Styles */
.partner-logo-item {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.partner-logo-item:hover img {
    filter: grayscale(0%) !important;
}

/* Login Main Section - Simplified */
.login-main-section {
    min-height: 100vh;
    background: var(--background-alt);
    padding: 10rem 0 6rem;
}

.login-header-text {
    text-align: center;
    margin-bottom: 3rem;
}

.login-header-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.login-header-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.login-options-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.login-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.login-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.login-box h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.login-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.login-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.login-button-primary {
    background: var(--secondary);
}

.login-button-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.login-button-secondary {
    background: var(--primary);
}

.login-button-secondary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.login-info-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.login-info-box svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.login-info-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.login-info-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Professional Login Page Styles */
.login-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #2C2C2C 50%, var(--secondary) 100%);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.login-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.login-page-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.login-page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.login-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.login-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    position: relative;
}

.login-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.login-card::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--secondary), var(--accent), var(--secondary));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.login-card:hover::after {
    opacity: 1;
}

.login-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.login-card-header {
    padding: 3.5rem 3rem 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.login-card-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-card:hover .login-card-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 50px rgba(196, 30, 58, 0.5);
}

.login-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.login-card-badge {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 30px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.login-card-body {
    padding: 2rem 3rem;
}

.login-card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
}

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

.login-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--background-alt);
    margin-bottom: 0.75rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-weight: 500;
}

.login-features-list li:last-child {
    margin-bottom: 0;
}

.login-features-list li:hover {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(232, 168, 68, 0.1) 100%);
    transform: translateX(8px);
}

.login-features-list li svg {
    color: var(--secondary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.login-card-footer {
    padding: 0 3rem 3.5rem;
}

.login-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.375rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.login-card-btn:hover::before {
    width: 400px;
    height: 400px;
}

.login-card-btn svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.login-card-btn:hover svg {
    transform: translateX(8px);
}

.primary-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.primary-btn:hover {
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
    transform: translateY(-3px);
}

.secondary-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #2C2C2C 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
}

.secondary-btn:hover {
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.4);
    transform: translateY(-3px);
}

.login-info-section {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.login-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.login-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.login-info-card svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 28px;
    height: 28px;
}

.login-info-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.login-info-card p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Simple Login Section */
.simple-login-section {
    padding: 10rem 0 6rem;
    background: var(--background-alt);
    min-height: 100vh;
}

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

.simple-login-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.simple-login-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.simple-login-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.simple-login-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.simple-login-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
}

.simple-login-icon.secondary {
    background: var(--primary);
}

.simple-login-box h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.simple-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.simple-badge.secondary {
    background: var(--primary);
}

.simple-login-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.simple-feature-list li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
}

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

.simple-login-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.simple-login-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.simple-login-button.secondary {
    background: var(--primary);
}

.simple-login-button.secondary:hover {
    background: var(--secondary);
}

.simple-info-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.simple-info-box svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.simple-info-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.simple-info-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modern-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        flex: 0 0 300px;
    }

    .about-title,
    .about-subtitle,
    .about-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header .container {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .header {
        padding: 1rem 0;
    }

    .logo-image {
        height: 44px;
    }

    .logo {
        flex: 1;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .login-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        order: 2;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .login-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .service-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-category-icon {
        width: 64px;
        height: 64px;
    }

    .service-category-title {
        font-size: 1.75rem;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content,
    .cta-content,
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

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

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

    .stat-label {
        font-size: 0.8125rem;
    }

    .phone-mockup-main {
        height: 450px;
        max-width: 100%;
    }

    .company-hero {
        padding: 8rem 0 4rem;
    }

    .company-hero-title {
        font-size: 2.5rem;
    }

    .company-hero-subtitle {
        font-size: 1.125rem;
    }

    .company-stats-section {
        padding: 3rem 0;
    }

    .company-stats-grid {
        gap: 1.5rem;
    }

    .company-stat-card {
        padding: 2.5rem 2rem;
    }

    .company-stat-number {
        font-size: 3rem;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

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

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

    .about-subtitle {
        font-size: 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modern-service-grid {
        grid-template-columns: 1fr;
    }

    .modern-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .modern-service-header h2 {
        font-size: 2rem;
    }

    .modern-service-icon-wrapper {
        width: 72px;
        height: 72px;
    }

    .pricing-cards,
    .blog-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .company-stat-card {
        padding: 2rem 1.5rem;
    }

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

    .company-stat-label {
        font-size: 1rem;
    }

    .cta-text h2,
    .final-cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p,
    .final-cta-text p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-logo-image {
        height: 28px;
    }

    .office-locations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-wrapper {
        padding-left: 60px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: -30px;
    }

    .timeline-heading {
        font-size: 1.375rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials {
        padding: 6rem 0;
    }

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

    .testimonials-carousel {
        flex-direction: column;
        gap: 1.5rem;
    }

    .carousel-nav {
        display: none;
    }

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

    .marketing-text {
        font-size: 1rem;
    }

    .gallery-slider-container {
        gap: 1rem;
    }

    .gallery-nav {
        width: 48px;
        height: 48px;
    }

    .gallery-slide {
        aspect-ratio: 4 / 3;
    }

    .gallery-dots {
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .login-main-section {
        padding: 8rem 0 4rem;
    }

    .login-header-text h1 {
        font-size: 2rem;
    }

    .login-options-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .login-box {
        padding: 2.5rem 2rem;
    }

    .login-info-box {
        padding: 1.5rem;
        flex-direction: column;
    }

    .simple-login-section {
        padding: 8rem 0 4rem;
    }

    .simple-login-header h1 {
        font-size: 2rem;
    }

    .simple-login-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .simple-login-box {
        padding: 2rem;
    }

    .simple-info-box {
        padding: 1.5rem;
    }

    .login-page-section {
        padding: 8rem 0 4rem;
    }

    .login-page-header {
        margin-bottom: 3rem;
    }

    .login-page-title {
        font-size: 2.5rem;
    }

    .login-page-subtitle {
        font-size: 1.125rem;
    }

    .login-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .login-card-header {
        padding: 3rem 2rem 1.5rem;
    }

    .login-card-body {
        padding: 1.5rem 2rem;
    }

    .login-card-footer {
        padding: 0 2rem 3rem;
    }

    .login-card-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .login-card-title {
        font-size: 1.75rem;
    }

    .intro-text-section {
        padding: 3rem 0;
    }

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

    .intro-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .header .container {
        padding: 0 1.25rem;
    }

    .logo-image {
        height: 40px;
    }

    .login-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

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

    .hero-description {
        font-size: 0.9375rem;
    }

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

    .phone-mockup-main {
        height: 380px;
    }

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

    .about-title {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 1.125rem;
    }

    .modern-service-header h2 {
        font-size: 1.75rem;
    }

    .modern-service-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .cta-text h2,
    .final-cta-text h2 {
        font-size: 1.75rem;
    }

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

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

    .testimonials-title {
        font-size: 1.75rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .footer-partners {
        flex-direction: column;
        align-items: flex-start;
    }

    .partner-badge {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem;
    }

    .login-main-section {
        padding: 7rem 0 3rem;
    }

    .login-header-text h1 {
        font-size: 1.75rem;
    }

    .login-box {
        padding: 2rem 1.5rem;
    }

    .login-box h2 {
        font-size: 1.5rem;
    }

    .login-page-section {
        padding: 7rem 0 3rem;
    }

    .login-page-title {
        font-size: 2rem;
    }

    .login-page-subtitle {
        font-size: 1rem;
    }

    .login-card-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .login-card-body {
        padding: 1.5rem;
    }

    .login-card-footer {
        padding: 0 1.5rem 2.5rem;
    }

    .login-card-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .login-card-title {
        font-size: 1.5rem;
    }

    .login-card-description {
        font-size: 0.9375rem;
    }

    .login-info-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
    }

    .intro-title {
        font-size: 1.75rem;
    }

    .intro-subtitle {
        font-size: 1rem;
    }
}
