/* Critical CSS */
:root {
    --primary-color: #FF8C42;
    --secondary-color: #2D3436;
    --accent-color: #FF6B6B;
    --text-color: #2D3436;
    --light-bg: #F7F7F7;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #FF8C42 0%, #FF6B6B 100%);
}

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

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Critical */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

header.scrolled {
    background-color: var(--white);
    padding: 0.3rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    width: 300px;
}

.logo img {
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 60px;
}

.nav-links {
    position: static;
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

.nav-cta {
    background: var(--gradient);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--white) !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

/* Mobile Menu Critical */
.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    font-size: 24px;
    position: relative;
}

.mobile-menu i {
    color: var(--text-color);
    display: block;
    font-size: 24px;
}

/* Lazy Load Images */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    header, 
    .mobile-menu,
    .nav-links,
    .scroll-top,
    .cta-button,
    .secondary-button {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Hero Section */
#hero {
    position: relative;
    padding: 180px 0 80px;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 5%;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.hero-text h1 {
    font-size: 3.0rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-text h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--text-color);
    text-transform: capitalize;
}

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

.secondary-button i {
    transition: transform 0.3s ease;
}

.secondary-button:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

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

.main-hero-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    z-index: -1;
}

.hero-blob {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(50%, -50%);
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
    animation: blob-float 8s ease-in-out infinite;
}

.floating-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: absolute;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 10%;
    right: 0;
    animation-delay: 1.5s;
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.floating-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.floating-card p {
    font-size: 0.9rem;
    color: #666;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10px, -10px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
        padding: 2rem;
    }

    .floating-card {
        padding: 1.5rem;
    }

    .floating-card.card-1 {
        top: 0;
        left: 0;
    }

    .floating-card.card-2 {
        bottom: 0;
        right: 0;
    }

    .nav-links {
        position: static;
        transform: none;
        justify-content: center;
        margin: 0 auto;
    }
    
    .logo {
        width: 250px;
    }
    
    .logo img {
        height: 60px;
    }
    
    header.scrolled .logo img {
        height: 55px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 0;
        flex-direction: column;
        align-items: center;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        justify-content: flex-start;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 0;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin: 15px 0;
    }

    .nav-links a {
        padding: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 140, 66, 0.1);
        color: var(--primary-color);
    }

    .nav-cta-wrapper {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
        margin-left: 1.5rem;
        z-index: 1001;
        padding: 10px;
    }

    .mobile-menu i {
        display: block;
        font-size: 24px;
        color: var(--text-color);
    }

    .nav-links .email-us {
        width: 100%;
        text-align: center;
        margin: 15px 20px;
        padding: 12px 20px;
        background: var(--gradient);
        color: var(--white);
        border-radius: 50px;
        font-weight: 500;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
        transition: all 0.3s ease;
        display: block;
        max-width: 100%;
        align-self: center;
    }

    .nav-links .email-us:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
        background: var(--gradient);
        color: var(--white);
    }

    .nav-cta {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .hero-image {
        max-width: 100%;
        padding: 1rem;
    }

    .floating-card {
        padding: 1rem;
        display: none;
    }
}

/* Services Section */
#hizmetler {
    padding: 8rem 1rem;
    background-color: var(--white);
}

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

.section-subtitle {
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 5%;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.featured {
    border-top: 4px solid var(--primary-color);
    transform: translateY(-10px);
}

.service-card.featured::before {
    content: "Popular";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #555;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.service-features-list li:hover {
    color: var(--primary-color);
}

.service-features-list li i {
    margin-right: 0.8rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.service-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

/* Pricing Section */
#fiyatlar {
    padding: 8rem 1rem;
    background-color: var(--light-bg);
}

#fiyatlar h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.pricing-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.pricing-header p {
    color: var(--text-light);
    font-size: 14px;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 16px;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.additional-services {
    margin-bottom: 80px;
}

.additional-services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 24px;
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.service-price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.pricing-cta {
    text-align: center;
    padding: 60px;
    background: var(--gradient);
    border-radius: 15px;
    color: var(--white);
}

.pricing-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.pricing-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pricing-cta .cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--light-bg);
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card {
        padding: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .price .amount {
        font-size: 36px;
    }

    .pricing-cta {
        padding: 40px 20px;
    }

    .pricing-cta h2 {
        font-size: 28px;
    }

    .pricing-cta p {
        font-size: 16px;
    }
}

/* Contact Section */
#contact {
    padding: 8rem 1rem;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-card {
    background: var(--gradient);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-card > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-social {
    padding: 80px 0;
    background: var(--white);
}

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

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

.contact-social .section-header {
    text-align: left;
    margin: 0;
}

.contact-social-grid {
    display: flex;
    justify-content: flex-end;
}

.social-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.social-card .card-icon i {
    font-size: 30px;
    color: var(--white);
}

.social-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.social-card p {
    color: var(--text-light);
    margin: 10px;
    font-size: 16px;
}

.social-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

@media (max-width: 768px) {
    .contact-social-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-social .section-header {
        text-align: center;
    }

    .contact-social-grid {
        justify-content: center;
    }

    .social-card {
        padding: 30px 20px;
    }

    .social-card .card-icon {
        width: 60px;
        height: 60px;
    }

    .social-card .card-icon i {
        font-size: 24px;
    }

    .social-card h3 {
        font-size: 18px;
    }

    .social-card p {
        font-size: 14px;
    }

    .social-link {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 5rem 1rem 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-section h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 500;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.8rem 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-section {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-section a:hover {
        transform: translateX(0) translateY(-2px);
    }
    
    .footer-section ul {
        padding-left: 0;
    }
    
    .footer-bottom {
        margin-top: 2rem;
    }
}

/* Features Section */
#features {
    padding: 8rem 1rem;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.features-text {
    max-width: 600px;
}

.features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.features-text > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 107, 0.1));
    padding: 1rem;
    border-radius: 12px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.features-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.features-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.features-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 107, 0.1));
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

@media (max-width: 1200px) {
    .features-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-text {
        max-width: 800px;
        margin: 0 auto;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features-text h2 {
        font-size: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item i {
        font-size: 1.8rem;
    }

    .feature-item h4 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 1rem;
    }
}

/* Integration Section */
#integration {
    padding: 8rem 1rem;
    background-color: var(--white);
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.integration-text {
    max-width: 600px;
}

.integration-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.integration-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.integration-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.integration-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.integration-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 107, 0.1));
    padding: 1rem;
    border-radius: 12px;
}

.integration-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.integration-feature p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.integration-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.integration-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

@media (max-width: 1200px) {
    .integration-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .integration-text {
        max-width: 800px;
        margin: 0 auto;
    }

    .integration-features {
        align-items: center;
    }

    .integration-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .integration-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .integration-text h2 {
        font-size: 2rem;
    }

    .integration-feature i {
        font-size: 1.8rem;
    }
}

/* Cost Savings Section */
#cost-savings {
    padding: 8rem 1rem;
    background-color: var(--white);
}

.cost-savings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.cost-savings-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.savings-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.savings-feature:hover {
    transform: translateY(-5px);
}

.savings-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 107, 0.1));
    padding: 1rem;
    border-radius: 12px;
}

.savings-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.savings-feature p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.cost-savings-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.cost-savings-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Customer Service Section */
#customer-service {
    padding: 8rem 1rem;
    background-color: var(--white);
}

.customer-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.customer-service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.customer-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.customer-service-text {
    padding-left: 2rem;
}

.customer-service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.customer-service-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 107, 0.1));
    padding: 1rem;
    border-radius: 12px;
}

.service-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-feature p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .cost-savings-content,
    .customer-service-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .savings-feature,
    .service-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cost-savings-image,
    .customer-service-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .customer-service-text {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .savings-feature h3,
    .service-feature h4 {
        font-size: 1.2rem;
    }

    .savings-feature p,
    .service-feature p {
        font-size: 1rem;
    }
}

.features-list-bottom {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}

.features-list-bottom .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.features-list-bottom .feature-item:hover {
    transform: translateY(-5px);
}

.features-list-bottom .feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .features-list-bottom {
        margin-top: 1rem;
        padding: 1rem;
    }
}

/* Page Header */
.page-header {
    padding: 180px 0 80px;
    background: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Services Page Styles */
.services-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 30px;
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-features-list i {
    color: var(--primary-color);
    font-size: 16px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-process {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.step-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.service-benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-light);
    margin: 10px;
    line-height: 1.6;
}

.service-cta {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.service-cta .section-header {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-cta .section-description {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 18px;
    opacity: 0.9;
}

.service-cta .cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--light-bg);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }

    .service-cta h2 {
        font-size: 28px;
    }

    .service-cta .section-description {
        font-size: 16px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 20px;
    color: var(--white);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-color);
}

.contact-form-container {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-header p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--light-bg);
    height: 45px;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 15px 30px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 55px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.submit-button i {
    font-size: 18px;
}

.map-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-container {
    position: relative;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.overlay-content p {
    margin-bottom: 20px;
}

.map-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.map-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.contact-social {
    padding: 80px 0;
    background: var(--white);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.social-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-card i {
    font-size: 24px;
    margin-bottom: 15px;
}

.social-card.facebook i {
    color: #1877f2;
}

.social-card.twitter i {
    color: #1da1f2;
}

.social-card.instagram i {
    color: #e4405f;
}

.social-card.linkedin i {
    color: #0077b5;
}

.social-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.social-card p {
    color: var(--text-light);
    margin: 10px;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 20px;
    }

    .submit-button,
    .map-button,
    .service-cta .cta-button {
        padding: 12px 25px;
        font-size: 14px;
        height: 50px;
    }

    .service-cta h2 {
        font-size: 28px;
    }

    .service-cta .section-description {
        font-size: 16px;
    }
}

.email-cta {
    max-width: 400px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.email-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.email-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.email-button i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.email-button h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.email-button p {
    color: var(--text-light);
    font-size: 16px;
}

@media (max-width: 768px) {
    .email-button {
        padding: 30px;
    }

    .email-button i {
        font-size: 32px;
    }

    .email-button h3 {
        font-size: 20px;
    }

    .email-button p {
        font-size: 14px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background-color: var(--white);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 20px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
    opacity: 1;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 10px 0;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #666;
}

.faq-cta {
    text-align: center;
    padding: 40px 0;
}

.faq-cta h2 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.faq-cta p {
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-grid {
        gap: 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
        max-height: 400px;
    }

    .faq-cta {
        padding: 30px 0;
    }

    .faq-cta h2 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 0.9rem;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 40px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        padding: 0 15px;
    }

    .section-header {
        margin: 0 auto 3rem;
        padding: 0 20px;
    }

    .section-subtitle {
        margin-bottom: 0.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .services-grid-section,
    .service-process,
    .service-benefits,
    .service-cta,
    .contact-section,
    .faq-section {
        padding: 60px 20px;
    }

    .services-grid,
    .process-steps,
    .benefits-grid,
    .contact-container,
    .faq-container {
        padding: 0 15px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .process-step,
    .benefit-card {
        padding: 20px 15px;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .info-card {
        padding: 25px 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-answer {
        padding: 0 15px 15px;
    }
}

/* Pricing styles */
.pricing-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.pricing-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-for-price {
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    margin: 15px 0;
    text-align: center;
    border: 1px dashed var(--primary-color);
}

.contact-for-price span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-for-price.small {
    padding: 8px 10px;
    margin: 10px 0;
}

.contact-for-price.small span {
    font-size: 0.9rem;
}

.pricing-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    color: white;
    font-size: 30px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    color: white;
    font-size: 24px;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.service-card.featured::before {
    content: "Featured";
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.25rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.2);
}

.service-card .service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-card .service-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--secondary-color);
    text-align: center;
}

.service-card .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0;
    flex-grow: 1;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-features-list li {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.95rem;
    padding: 0.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-features-list li:hover {
    background: rgba(255, 140, 66, 0.1);
    transform: translateX(5px);
}

.service-features-list li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.service-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        padding: 2rem;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-card h3 {
        text-align: center;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 180px 0 80px;
    background: var(--white);
    text-align: center;
}

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

.pricing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-highlights {
    padding: 80px 0;
    background: var(--light-bg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.highlight-card p {
    color: #666;
    font-size: 1rem;
}

.service-details {
    padding: 80px 0;
    background: var(--white);
}

.service-details h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-detail-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-detail-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card ul li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-card ul li:before {
    content: "•";
    color: var(--primary-color);
}

.contact-pricing {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.contact-pricing h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-pricing p {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.faq-item p {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .highlights-grid,
    .services-grid,
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 120px 0 60px;
    }

    .highlights-grid,
    .services-grid,
    .contact-methods,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .highlight-card,
    .service-detail-card,
    .contact-card {
        padding: 20px;
    }
}

.service-features {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 5%;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-cta {
    background: var(--gradient);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.service-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .service-cta h2 {
        font-size: 1.8rem;
    }
    
    .service-cta p {
        font-size: 1rem;
    }
}

.footer-email-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.footer-email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
    color: #ffffff;
}

.footer-email-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .email-button, .footer-email-btn {
        margin: 1.5rem auto 0;
    }
}