/* ===== ENHANCED CSS - Hero, Advanced Components & Effects ===== */

/* ===== MODERN HERO SECTION ===== */
.modern-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.98) 0%, 
        rgba(72, 27, 40, 0.95) 50%, 
        rgba(10, 10, 10, 0.98) 100%);
    color: white;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--secondary), #6d2d46);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--accent), #ffd700);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 95%, rgba(238, 135, 21, 0.1) 100%),
        linear-gradient(0deg, transparent 95%, rgba(238, 135, 21, 0.1) 100%);
    background-size: 50px 50px;
    opacity: 0.1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-modern {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, 
        rgba(238, 135, 21, 0.2) 0%, 
        rgba(253, 194, 30, 0.1) 100%);
    border: 1px solid rgba(238, 135, 21, 0.3);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ffffff 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-line {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.company-highlight {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, 
        rgba(238, 135, 21, 0.1) 0%, 
        rgba(253, 194, 30, 0.05) 100%);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(238, 135, 21, 0.2);
}

.vap-text {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(238, 135, 21, 0.5);
}

.full-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
}

.automation-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(238, 135, 21, 0.1);
    border-color: rgba(238, 135, 21, 0.3);
    transform: translateY(-2px);
}

.feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
    color: white;
}

.hero-buttons-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.cta-button-modern.primary-btn {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(238, 135, 21, 0.3);
}

.cta-button-modern.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 135, 21, 0.4);
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.cta-button-modern.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button-modern.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(238, 135, 21, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero Visual Side */
.hero-visual {
    position: relative;
    z-index: 2;
}

.visual-container {
    position: relative;
}

.dashboard-preview {
    background: rgba(20, 20, 25, 0.8);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float-dashboard 6s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.dashboard-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.metric-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(238, 135, 21, 0.1);
    border-color: rgba(238, 135, 21, 0.2);
    transform: translateY(-5px);
}

.metric-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.metric-card h4 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-weight: 500;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.floating-certificate {
    position: absolute;
    top: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2a1020 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(72, 27, 40, 0.4);
    border: 2px solid var(--primary);
    animation: float-certificate 8s ease-in-out infinite;
    z-index: 10;
}

.certificate-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.certificate-icon {
    font-size: 2.5rem;
    color: var(--accent);
}

.certificate-text h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

.certificate-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.scroll-indicator-modern {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

.scroll-indicator-modern p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a1020 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23ffffff" opacity="0.03"/></svg>');
    background-size: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== ENHANCED SERVICE CARD OVERLAY ===== */
.service-card-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card-enhanced .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card-enhanced:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-overlay h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.service-overlay ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.service-overlay ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-overlay ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ===== CERTIFICATE BADGE ENHANCEMENT ===== */
.certificate-badge {
    position: absolute;
    top: 120px;
    right: 50px;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(238, 135, 21, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
    z-index: 2;
    border: 3px solid var(--accent);
    transform: rotate(5deg);
    transition: all 0.4s ease;
}

.certificate-badge:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.certificate-badge .badge-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certificate-badge .badge-ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certificate-badge h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 700;
}

.certificate-badge p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.certificate-badge .badge-id {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
}

/* ===== COMPANY NAME EMPHASIS ===== */
.company-full {
    color: var(--primary);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SERVICES CAROUSEL ===== */
.services-carousel {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a1020 100%);
    color: white;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: max-content;
}

.carousel-slide {
    padding: 0 40px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.carousel-slide i {
    color: var(--accent);
    font-size: 18px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* ===== EXPERT PROFILE STYLES ===== */
.expert-profile {
    padding: 150px 0 80px;
}

.profile-header {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.profile-image {
    flex: 0 0 450px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 4px solid white;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--dark);
}

.profile-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.profile-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.profile-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.profile-cta {
    display: flex;
    gap: 15px;
}

.profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.profile-main {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border-top: 4px solid var(--primary);
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border-top: 4px solid var(--secondary);
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.certificate-icon-small {
    font-size: 24px;
    color: var(--primary);
}

.certificate-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.certificate-info p {
    font-size: 14px;
    color: var(--gray);
}

.experience-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.experience-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.experience-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.experience-meta {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.experience-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== PRICING PAGE ===== */
.pricing-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.pricing-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.pricing-category {
    margin-bottom: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray-light);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 35px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-card-header {
    padding: 30px 25px;
    text-align: center;
    background: linear-gradient(to bottom, var(--light) 0%, white 100%);
    border-bottom: 1px solid var(--gray-light);
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price sup {
    font-size: 1.5rem;
    top: -1.5em;
}

.price-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.pricing-card-body {
    padding: 30px 25px;
}

.pricing-card-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card-body li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-light);
    display: flex;
    align-items: flex-start;
}

.pricing-card-body li:last-child {
    border-bottom: none;
}

.pricing-card-body li i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== CASE STUDY ===== */
.case-study {
    background-color: white;
}

.case-study-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.case-study-text {
    flex: 1;
}

.case-study-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* ===== CERTIFICATION BADGE ===== */
.certification-badge {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a1020 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent);
}

.badge-body h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.certification-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #cbd5e1;
}

.certification-id, .certification-date {
    font-size: 16px;
    margin-bottom: 5px;
    color: #94a3b8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title-modern {
        font-size: 3rem;
    }

    .vap-text {
        font-size: 4rem;
    }

    .certificate-badge {
        right: 20px;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title-modern {
        font-size: 2.8rem;
    }

    .hero-title-line {
        font-size: 2.3rem;
    }

    .company-highlight {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons-modern {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificate-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 40px auto;
        transform: none;
    }

    .certificate-badge:hover {
        transform: scale(1.05);
    }

    .profile-header {
        flex-direction: column;
    }

    .profile-image {
        flex: 0 0 250px;
        height: 250px;
        align-self: center;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .case-study-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 120px 0 80px;
    }

    .hero-title-modern {
        font-size: 2.3rem;
    }

    .hero-title-line {
        font-size: 1.8rem;
    }

    .vap-text {
        font-size: 3rem;
    }

    .automation-text {
        font-size: 2.2rem;
    }

    .company-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .hero-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-slide {
        padding: 0 25px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-item {
        font-size: 16px;
    }

    .pricing-hero-content h1 {
        font-size: 2.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-title-line {
        font-size: 1.6rem;
    }

    .vap-text {
        font-size: 2.5rem;
    }

    .automation-text {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .certificate-badge {
        width: 180px;
        height: 180px;
        padding: 20px;
    }

    .certificate-badge .badge-icon {
        font-size: 36px;
    }

    .service-overlay {
        padding: 20px;
    }

    .service-overlay h3 {
        font-size: 18px;
    }
}

/* ===== MODERN FAQ SECTION ===== */
.faq-section {
    background-color: var(--light);
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.faq-category-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.faq-category-title i {
    font-size: 32px;
    color: var(--primary);
}

.faq-items {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(238, 135, 21, 0.1);
    transform: translateY(-4px);
}

.faq-item.active {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(238, 135, 21, 0.15);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-question i {
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    font-size: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-list {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 15px 0 0 0;
}

.faq-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--gray);
}

.faq-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive FAQ Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-category {
        margin-bottom: 40px;
    }

    .faq-category-title {
        font-size: 22px;
        margin-bottom: 25px;
        gap: 10px;
    }

    .faq-category-title i {
        font-size: 26px;
    }

    .faq-items {
        gap: 16px;
    }

    .faq-question {
        padding: 18px;
        font-size: 16px;
    }

    .faq-question i {
        font-size: 16px;
        margin-left: 12px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-list li {
        padding: 8px 0 8px 24px;
        font-size: 15px;
    }
}

/* ===== SERVICES GRID SECTION ===== */
/* ===== SERVICES GRID SECTION - SIMPLE CARD GRID ===== */
.services-grid-section {
    background-color: var(--light);
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Simple Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(238, 135, 21, 0.15);
    transform: translateY(-8px);
}

.service-card-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-link:hover {
    border-bottom-color: var(--primary);
    transform: translateX(3px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card-icon {
        font-size: 40px;
    }

    .service-card-title {
        font-size: 18px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .services-grid-section {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-card-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .service-card-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .service-card-link {
        font-size: 12px;
    }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.why-choose-card {
    background: #ffffff;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(238, 135, 21, 0.1);
    transform: translateY(-4px);
}

.why-choose-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.why-choose-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-choose-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card {
        padding: 20px;
    }

    .why-choose-icon {
        font-size: 32px;
    }

    .why-choose-card h4 {
        font-size: 16px;
    }

    .why-choose-card p {
        font-size: 14px;
    }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.why-choose-card {
    background: #ffffff;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(238, 135, 21, 0.1);
    transform: translateY(-4px);
}

.why-choose-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.why-choose-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-choose-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card {
        padding: 20px;
    }

    .why-choose-icon {
        font-size: 32px;
    }

    .why-choose-card h4 {
        font-size: 16px;
    }

    .why-choose-card p {
        font-size: 14px;
    }
}

/* ===== SERVICE DETAIL PAGE STYLES ===== */

/* Service Detail Hero Section */
.service-detail-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a1020 100%);
    color: white;
    padding: 80px 0 60px;
    border-bottom: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(238, 135, 21, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-detail-hero-content {
    position: relative;
    z-index: 2;
}

.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    flex-wrap: wrap;
}

.service-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-detail-breadcrumb a:hover {
    color: var(--accent);
}

.service-detail-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.service-detail-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #ffffff;
}

.service-detail-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
}

/* Service Detail Overview Section */
.service-detail-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.service-detail-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-column:first-child {
    padding-right: 30px;
}

.service-detail-column h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.service-detail-column h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-column p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-highlight {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-detail-highlight:hover {
    box-shadow: 0 8px 20px rgba(238, 135, 21, 0.1);
    transform: translateX(5px);
}

.highlight-icon {
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 28px;
    color: var(--primary);
    display: block;
}

.highlight-content h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

/* Service Detail Features Section */
.service-detail-features {
    padding: 80px 0;
    background-color: white;
}

.service-detail-features h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-item:hover {
    box-shadow: 0 12px 30px rgba(238, 135, 21, 0.15);
    transform: translateY(-8px);
    border-top-color: var(--accent);
    background: white;
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    flex-grow: 1;
}

/* Service Detail Process Section */
.service-detail-process {
    background-color: #f8fafc;
    padding: 80px 0;
}

.service-detail-process h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px 20px;
    position: relative;
    padding: 0 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 200px;
    justify-content: flex-start;
}

.timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    right: -50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    z-index: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(238, 135, 21, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(238, 135, 21, 0.4);
}

.timeline-content {
    flex: 1;
    width: 100%;
}

.timeline-item h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.timeline-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Service Detail Pricing Section */
.service-detail-pricing {
    padding: 80px 0;
    background-color: white;
}

.service-detail-pricing h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(238, 135, 21, 0.15);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 50px rgba(238, 135, 21, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card-header {
    padding: 30px 25px;
    text-align: center;
    background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
    border-bottom: 1px solid var(--gray-light);
}

.pricing-card-header h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.price sup {
    font-size: 1.5rem;
    top: -1.5em;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-card-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--gray-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
    font-weight: 700;
}

.service-cta-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 135, 21, 0.3);
}

/* CTA Section on Service Pages */
.service-detail-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 20px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-button-primary {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.service-cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive - Service Detail Pages */
@media (max-width: 1024px) {
    .service-detail-hero h1 {
        font-size: 2.8rem;
    }

    .service-detail-tagline {
        font-size: 1.1rem;
    }

    .service-detail-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-column:first-child {
        padding-right: 0;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 25px 15px;
    }

    .timeline-item:not(:last-child)::after {
        width: calc(100% - 20px);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 60px 0 40px;
    }

    .service-detail-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .service-detail-tagline {
        font-size: 1rem;
    }

    .service-detail-section {
        padding: 60px 0;
    }

    .service-detail-column h2 {
        font-size: 1.8rem;
    }

    .service-detail-column p {
        font-size: 15px;
    }

    .service-detail-features,
    .service-detail-process,
    .service-detail-pricing {
        padding: 60px 0;
    }

    .service-detail-features h2,
    .service-detail-process h2,
    .service-detail-pricing h2 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-item h3 {
        font-size: 0.95rem;
    }

    .timeline-item p {
        font-size: 12px;
    }

    .feature-item,
    .service-detail-highlight {
        padding: 20px;
    }

    .pricing-card {
        margin-bottom: 0;
    }

    .service-cta-button {
        padding: 12px;
        font-size: 13px;
    }

    .service-detail-cta {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .service-cta-button-primary {
        padding: 14px 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .service-detail-hero h1 {
        font-size: 1.8rem;
    }

    .service-detail-hero-content {
        margin-bottom: 0;
    }

    .service-detail-breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .service-detail-column h2,
    .service-detail-features h2,
    .service-detail-process h2,
    .service-detail-pricing h2 {
        font-size: 1.5rem;
    }

    .service-detail-column p,
    .feature-item p,
    .timeline-item p {
        font-size: 14px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .feature-item,
    .service-detail-highlight {
        padding: 15px;
    }

    .highlight-icon i {
        font-size: 24px;
    }

    .highlight-content h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-features li {
        font-size: 13px;
        padding: 10px 0;
    }

    .service-detail-cta {
        padding: 30px 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }
}
