/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

:root {
    --primary-color: #20b2aa;
    --primary-dark: #1a8f89;
    --primary-light: #5fd3cc;
    --secondary-color: #ff7f50;
    --accent-color: #20b2aa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #fdfbf7;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

/* Better box-sizing for all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Improve touch interactions */
@media (hover: none) and (pointer: coarse) {
    /* Mobile touch devices */
    .btn:hover,
    .service-card:hover,
    .portfolio-item:hover,
    .pricing-card:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a8f89;
    white-space: nowrap;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown > a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a i,
.nav-dropdown.active > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu a.active {
    font-weight: 600;
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.btn-nav:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Split Screen with Video Background */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding: 0;
}

/* Video background - right 60% with gradient divider */
.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 110%;
    min-height: 110%;
    width: calc(177.77777778vh * 1.1); /* 16:9 aspect ratio + 10% scale */
    height: calc(56.25vw * 1.1); /* 16:9 aspect ratio + 10% scale */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

/* Video responsive adjustments */
@media (max-width: 1200px) {
    .hero-video {
        min-width: 120%;
        min-height: 120%;
    }
}

@media (max-width: 968px) {
    .hero-video {
        width: auto;
        height: 110%;
        min-width: 110%;
        min-height: 110%;
    }
    
    .hero-video-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-video {
        /* Keep video visible on mobile */
        min-width: 120%;
        min-height: 120%;
    }
    
    .hero-background {
        /* Fallback gradient in case video doesn't load */
        background: linear-gradient(135deg, 
            rgba(32, 178, 170, 0.95) 0%, 
            rgba(95, 211, 204, 0.9) 50%,
            rgba(255, 127, 80, 0.85) 100%);
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

/* Responsive gradient adjustments */
@media (max-width: 968px) {
    .hero-gradient {
        background: linear-gradient(180deg, 
            rgba(32, 178, 170, 0.6) 0%, 
            rgba(139, 69, 19, 0.5) 50%,
            rgba(184, 115, 51, 0.6) 100%);
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 2;
}

/* Content overlay - left 40% with soft gradient edge */
.hero-content {
    position: relative;
    z-index: 3;
    width: 40%;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        rgba(48, 157, 160, 0.95) 0%, 
        rgba(48, 157, 160, 0.88) 50%,
        rgba(68, 180, 183, 0.82) 100%);
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(32, 178, 170, 0.1) 50%,
        rgba(32, 178, 170, 0.2) 100%);
    pointer-events: none;
    z-index: 10;
}

.hero-inner {
    width: 100%;
    padding-right: 2rem;
}

.hero-text-center {
    max-width: 100%;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge-new i {
    font-size: 1rem;
}

.hero-title-new {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle-new {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats-inline {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-inline i {
    font-size: 2rem;
    color: white;
    opacity: 0.9;
}

.stat-inline div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stat-inline strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-inline span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons-new {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #ffffff;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image-showcase {
    position: relative;
    height: 550px;
}

.showcase-main {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.4s ease;
}

.showcase-main:hover {
    transform: translateY(-10px);
}

.showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.showcase-badge span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.showcase-accent {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.4s ease;
}

.showcase-accent:hover {
    transform: scale(1.05);
    z-index: 10;
}

.showcase-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-accent-1 {
    top: -20px;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.showcase-accent-2 {
    bottom: 20px;
    right: -20px;
    animation: float 6s ease-in-out infinite 3s;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}

/* Scroll indicator responsive */
@media (max-width: 968px) {
    .hero-scroll-indicator {
        bottom: 25px;
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    .hero-scroll-indicator {
        bottom: 20px;
        font-size: 1.2rem;
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.btn {
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

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

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

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

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



/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    background: var(--bg-light);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    z-index: 0;
}

.why-us-image img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.why-us-text h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Portfolio Section */
.portfolio {
    background: white;
}

.portfolio-showcase {
    margin-bottom: 4rem;
}

/* Video-First Featured Work Layout */
.portfolio-video-showcase {
    margin-bottom: 4rem;
}

.video-featured-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    height: 600px;
    transition: all 0.4s ease;
}

.video-featured-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-featured-wrapper:hover .featured-video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 1;
    display: none;
}

.video-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.video-badge {
    margin-bottom: 1rem;
}

.video-content-overlay .portfolio-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.video-content-overlay h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-content-overlay p {
    font-size: 0.644rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-video-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: var(--primary-color);
    color: white;
}

.btn-video-cta i {
    transition: transform 0.3s ease;
}

.btn-video-cta:hover i {
    transform: translateX(5px);
}

/* Legacy styles for old layout */
.portfolio-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.portfolio-featured-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    background: #f8f9fa;
}

.portfolio-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-featured-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.portfolio-featured-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.portfolio-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.portfolio-carousel {
    display: flex;
    gap: 2rem;
    animation: portfolioScroll 40s linear infinite;
    will-change: transform;
}

.portfolio-carousel:hover {
    animation-play-state: paused;
}

@keyframes portfolioScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

.portfolio-carousel .portfolio-item {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 350px;
}

@media (max-width: 1100px) {
    .portfolio-carousel .portfolio-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: 300px;
    }
    
    @keyframes portfolioScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 2rem));
        }
    }
}

@media (max-width: 700px) {
    .portfolio-carousel .portfolio-item {
        flex: 0 0 calc(100% - 2rem);
        min-width: 280px;
    }
    
    @keyframes portfolioScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 2rem));
        }
    }
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

@media (hover: none) {
    .portfolio-overlay {
        opacity: 1;
    }
}

.portfolio-info {
    color: white;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.portfolio-link {
    color: white;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 178, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 127, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.15);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.02) 0%, white 100%);
}

.pricing-card.featured::before {
    transform: scaleX(1);
    height: 4px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(32, 178, 170, 0.2);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.pricing-header::after {
    display: none;
}

.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0;
    margin-top: 1rem;
}

.currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.4rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1.5px;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.85rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: none;
    transition: all 0.2s ease;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    padding-left: 0.25rem;
    color: var(--text-dark);
}

.pricing-features i {
    color: var(--success-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 0.2rem;
    margin-top: 0.1rem;
}

.pricing-card .btn {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.2);
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-card .btn:hover {
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.3);
    transform: translateY(-2px);
}

.pricing-card.featured .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.pricing-card.featured .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.contact-item p {
    color: var(--text-light);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

@media (max-width: 640px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

.form-helper {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary-light);
}

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

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: white;
}

.portfolio-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.portfolio-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.portfolio-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.portfolio-cta .btn {
    margin: 0 0.5rem;
}

.portfolio-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.portfolio-cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Explore Our Work Button - Make it VERY obvious */
.portfolio-cta-button .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.5);
    border: 3px solid white;
    transition: all 0.3s ease;
    animation: buttonPulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-cta-button .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(32, 178, 170, 0.6);
    animation: none;
}

.portfolio-cta-button .btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.portfolio-cta-button .btn:hover i {
    transform: translateX(8px);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(32, 178, 170, 0.5);
    }
    50% {
        box-shadow: 0 15px 50px rgba(32, 178, 170, 0.7), 0 0 30px rgba(32, 178, 170, 0.4);
    }
}

/* Hosting Section */
.hosting-section {
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.hosting-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.hosting-card {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border: 3px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hosting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hosting-card:hover::before {
    transform: scaleX(1);
}

.hosting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.hosting-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.15);
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.03) 0%, white 100%);
    transform: scale(1.05);
}

.hosting-card.featured::before {
    transform: scaleX(1);
    height: 5px;
}

.hosting-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.hosting-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(32, 178, 170, 0.2);
}

.hosting-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.3;
}

.hosting-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.hosting-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.diy-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.diy-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.diy-note a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Hosting Section - New Design */
.hosting-section-new {
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 2px solid #e9ecef;
}

.hosting-headline {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
}

.hosting-categories-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.hosting-category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.get-online-label {
    background: linear-gradient(135deg, var(--primary-color), #26a89a);
}

.stay-online-label {
    background: linear-gradient(135deg, var(--secondary-color), #ff9570);
}

.hosting-card-new {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.hosting-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.get-online-card {
    border-left: 4px solid var(--primary-color);
    background: white;
}

.stay-online-card {
    border: 2px solid #e9ecef;
    background: white;
}

.most-popular-card {
    border: 2px solid var(--secondary-color);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.02) 0%, white 100%);
}

.most-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), #ff9570);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    background: rgba(32, 178, 170, 0.05);
    transition: all 0.3s ease;
}

.hosting-card-new:hover .card-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.hosting-card-new h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.card-price {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.card-tagline {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

.hosting-cards-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Client Carousel */
.clients-carousel {
    background: white;
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.carousel-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.carousel-item {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-item:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .clients-carousel {
        padding: 2rem 0;
    }
    
    .carousel-track {
        gap: 2rem;
    }
}

/* Value Props Section */
.value-props-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.value-prop {
    text-align: center;
}

.value-icon {
    margin-bottom: 2rem;
}

.value-icon img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

.value-prop h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.value-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: inline-block;
    margin-right: 1rem;
}

.stat-item .stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.stat-item .stat-check {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success-color);
    display: inline-block;
    margin-right: 1rem;
}

.stat-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 0.5rem;
}

/* Family Business Section */
.family-business {
    background: var(--bg-light);
}

.family-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.family-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.family-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.family-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

/* Service Excellence Section */
.service-excellence {
    background: white;
}

.excellence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.excellence-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.excellence-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.excellence-text .btn {
    margin-top: 1rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta {
    margin-top: 3rem;
}

.services-cta p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, #20b2aa 0%, #5fd3cc 50%, #ff7f50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    display: block;
}

.stats-cta {
    text-align: center;
}

.stats-cta p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Portfolio Page Styles */
.portfolio-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.portfolio-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.portfolio-featured-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    position: relative;
}

.featured-spotlight-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.featured-spotlight-label i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

.featured-animated {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.project-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.stat-bubble {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px);
}

.stat-bubble i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-bubble span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.featured-intro {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
    color: var(--text-dark) !important;
}

.project-impact {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.05), rgba(255, 127, 80, 0.05));
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.project-impact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.project-impact p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

.btn-glow {
    box-shadow: 0 10px 40px rgba(32, 178, 170, 0.4);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(32, 178, 170, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(32, 178, 170, 0.6); }
}

.portfolio-grid-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a4d6d 0%, #2d5f7f 25%, #3a7a9e 50%, #2d5f7f 75%, #1a4d6d 100%);
}

.portfolio-grid-section .section-header h2,
.portfolio-grid-section .section-header p {
    color: white;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.3);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.portfolio-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.project-metrics {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.project-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-metrics i {
    font-size: 1rem;
}

.portfolio-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.portfolio-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.portfolio-feature i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.portfolio-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.portfolio-tag {
    display: inline-block;
    background: rgba(32, 178, 170, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.portfolio-cta-enhanced {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(32, 178, 170, 0.3);
}

.portfolio-cta-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.portfolio-cta-enhanced::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.portfolio-cta-enhanced h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.portfolio-cta-enhanced p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.cta-feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.cta-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-large:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem !important;
    opacity: 0.9;
    font-weight: 500 !important;
}

/* Responsive Design */

/* Tablet landscape and smaller desktops (769px - 968px) */
@media (max-width: 968px) and (min-width: 769px) {
    /* Hero optimized for tablet landscape */
    .hero {
        min-height: 100vh;
    }
    
    .hero-background {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 50px 0 70px;
    }
    
    .hero-title-new {
        font-size: 3rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.2rem;
    }
    
    .hero-stats-inline {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .stat-inline {
        flex: 0 1 calc(50% - 1rem);
        min-width: 180px;
    }
}

/* Portrait tablets (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-background {
        height: 45vh;
        min-height: 320px;
        max-height: 450px;
    }
    
    .hero-content {
        padding: 45px 0 60px;
    }
    
    .hero-title-new {
        font-size: 2.75rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.15rem;
    }
    
    .hero-stats-inline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-inline {
        justify-content: center;
    }
    
    .hero-buttons-new {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablet and mobile (max-width: 968px) */
@media (max-width: 968px) {
    /* Root font size adjustment for better scaling */
    html {
        font-size: 16px;
    }

    /* Container adjustments */
    .container {
        padding: 0 15px;
    }

    /* Fix viewport height for mobile browsers */
    .hero {
        min-height: auto;
    }

    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown > a {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        margin-left: 1rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 200px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a.active {
        padding-left: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    /* Hero section - tablet responsive */
    .hero {
        min-height: 100vh;
        flex-direction: column;
    }
    
    /* Stack video on top for tablet */
    .hero-background {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 400px;
        right: auto;
        top: 0;
    }
    
    /* Content below video */
    .hero-content {
        position: relative;
        width: 100%;
        padding: 50px 0 70px;
        background: linear-gradient(135deg, 
            rgba(48, 157, 160, 0.95) 0%, 
            rgba(48, 157, 160, 0.88) 50%,
            rgba(68, 180, 183, 0.82) 100%);
    }
    
    .hero-content::after {
        display: none;
    }
    
    .hero-inner {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-text-center {
        text-align: center;
    }

    .hero-badge-new {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-title-new {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle-new {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats-inline {
        gap: 1.5rem;
        padding: 1.5rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-inline {
        flex: 0 1 calc(50% - 0.75rem);
        min-width: 150px;
        max-width: 200px;
    }

    .stat-inline i {
        font-size: 1.5rem;
    }

    .stat-inline strong {
        font-size: 1.25rem;
    }

    .stat-inline span {
        font-size: 0.75rem;
    }

    .hero-buttons-new {
        gap: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Section spacing */
    section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    /* Portfolio */
    .portfolio-featured {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .portfolio-featured-image img {
        height: 300px;
    }

    .image-frame iframe {
        height: 300px;
    }

    .portfolio-featured-content h3 {
        font-size: 1.75rem;
    }

    .portfolio-featured-content p {
        font-size: 1rem;
    }

    /* Video Featured Work - Mobile */
    .video-featured-wrapper {
        height: 500px;
    }

    .video-content-overlay {
        padding: 2rem;
    }

    .video-content-overlay h3 {
        font-size: 2rem;
    }

    .video-content-overlay p {
        font-size: 1.05rem;
    }

    .portfolio-carousel-wrapper {
        padding: 0.5rem 0;
    }
    
    .portfolio-carousel {
        gap: 1.5rem;
    }

    .portfolio-image img {
        height: 250px;
        object-fit: cover;
    }

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

    .service-card {
        padding: 2rem;
    }

    /* Why Us */
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-us-image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .why-us-image img {
        height: 350px;
    }

    .why-us-text h3 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    /* Family Business & Excellence */
    .family-content,
    .excellence-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .family-image img,
    .excellence-image img {
        height: 350px;
    }

    .family-text h2,
    .excellence-text h2 {
        font-size: 2rem;
    }

    .family-text h3 {
        font-size: 1.3rem;
    }

    /* Value Stats */
    .value-icon img {
        height: 300px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }

    /* Hosting */
    .hosting-grid {
        grid-template-columns: 1fr;
    }

    .hosting-categories-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .hosting-section-new {
        padding: 3rem 2rem;
        border-radius: 20px;
    }

    .hosting-headline {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Portfolio Hero */
    .portfolio-hero {
        padding: 120px 0 60px;
    }

    .portfolio-hero-content h1 {
        font-size: 3rem;
    }

    .portfolio-hero-content p {
        font-size: 1.2rem;
    }

    .portfolio-filter {
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .filter-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

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

    .stat-bubble {
        padding: 0.75rem 1rem;
    }

    .stat-bubble span {
        font-size: 0.85rem;
    }

    .portfolio-cta-enhanced {
        padding: 4rem 2rem;
    }

    .portfolio-cta-enhanced h3 {
        font-size: 2.25rem;
    }

    .portfolio-cta-enhanced p {
        font-size: 1.15rem;
    }

    .cta-features {
        gap: 1.5rem;
    }

    .portfolio-features {
        grid-template-columns: 1fr;
    }

    /* Portfolio page specific */
    .portfolio-featured-section,
    .portfolio-grid-section,
    .portfolio-cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    /* Portfolio CTA buttons */
    .portfolio-cta .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Navigation */
    .logo-image {
        height: 45px;
    }

    .logo-text {
        display: none;
    }

    .nav-menu {
        padding: 1.5rem;
    }

    /* Hero */
    /* Mobile: reduce video height, optimize spacing */
    .hero-background {
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
    }

    .hero-content {
        padding: 40px 0 50px;
        background: linear-gradient(135deg, 
            rgba(48, 157, 160, 0.95) 0%, 
            rgba(48, 157, 160, 0.88) 50%,
            rgba(68, 180, 183, 0.82) 100%);
    }
    
    .hero-text-center {
        text-align: center;
    }

    .hero-badge-new {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-badge-new i {
        font-size: 0.85rem;
    }

    .hero-title-new {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

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

    .hero-stats-inline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .stat-inline {
        width: 100%;
        flex: none;
        justify-content: center;
    }

    .stat-inline i {
        font-size: 1.35rem;
    }

    .stat-inline strong {
        font-size: 1.15rem;
    }

    .stat-inline span {
        font-size: 0.7rem;
    }

    .hero-buttons-new {
        flex-direction: column;
        gap: 0.9rem;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Buttons */
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Portfolio */
    .portfolio-featured {
        padding: 1.5rem;
    }

    .portfolio-featured-image img {
        height: 250px;
    }

    .image-frame iframe {
        height: 250px;
    }

    .portfolio-featured-content h3 {
        font-size: 1.5rem;
    }

    .portfolio-featured-content p {
        font-size: 0.95rem;
    }

    /* Video Featured Work - Small Mobile */
    .video-featured-wrapper {
        height: 450px;
        border-radius: 20px;
    }

    .video-content-overlay {
        padding: 1.5rem;
    }

    .video-content-overlay h3 {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
    }

    .video-content-overlay p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-video-cta {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .portfolio-carousel {
        gap: 1.25rem;
    }

    .portfolio-image img {
        height: 280px;
    }

    .portfolio-info h3 {
        font-size: 1.25rem;
    }

    .portfolio-info p {
        font-size: 0.9rem;
    }

    .portfolio-cta h3 {
        font-size: 1.65rem;
    }

    .portfolio-cta p {
        font-size: 1.05rem;
    }

    /* Services */
    .service-card {
        padding: 1.75rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* Why Us */
    .why-us-content {
        gap: 2rem;
    }

    .why-us-image img {
        height: 300px;
    }

    .why-us-text h3 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .value-stats {
        gap: 1.25rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

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

    .stat-item .stat-label {
        font-size: 1.15rem;
    }

    .stat-item p {
        font-size: 0.95rem;
    }

    /* Family & Excellence */
    .family-content,
    .excellence-content {
        gap: 1.75rem;
    }

    .family-image img,
    .excellence-image img {
        height: 300px;
    }

    .family-text h2,
    .excellence-text h2 {
        font-size: 1.75rem;
    }

    .family-text h3 {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        gap: 0.85rem;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .currency {
        font-size: 1.75rem;
    }

    .amount {
        font-size: 3rem;
    }

    .pricing-features li {
        font-size: 0.95rem;
    }

    .hosting-section h3 {
        font-size: 1.5rem;
    }

    .hosting-card {
        padding: 1.5rem;
    }

    .hosting-card h4 {
        font-size: 1.2rem;
    }

    .hosting-price {
        font-size: 1.35rem;
    }

    .hosting-section-new {
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
    }

    .hosting-headline {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .hosting-categories-wrapper {
        gap: 2rem;
    }

    .hosting-card-new {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .hosting-card-new h4 {
        font-size: 1.2rem;
    }

    .card-price {
        font-size: 1.3rem;
    }

    .card-tagline {
        font-size: 0.95rem;
    }

    .category-label {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
    }

    .most-popular-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    /* Contact */
    .contact-content {
        gap: 1.75rem;
    }

    .contact-info {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

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

    .contact-item p {
        font-size: 0.95rem;
    }

    .contact-form-container {
        padding: 1.75rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    /* Stats Section */
    .stat-card {
        padding: 2.5rem 1.5rem;
    }

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

    .stat-card .stat-label {
        font-size: 1.1rem;
    }

    /* Carousel */
    .carousel-item {
        font-size: 1.2rem;
    }

    /* Portfolio Hero */
    .portfolio-hero {
        padding: 100px 0 50px;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

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

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

    .featured-spotlight-label {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }

    .portfolio-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

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

    .project-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-bubble {
        padding: 0.75rem 1rem;
    }

    .stat-bubble i {
        font-size: 1.2rem;
    }

    .stat-bubble span {
        font-size: 0.8rem;
    }

    .project-metrics {
        justify-content: center;
    }

    .portfolio-cta-enhanced {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .cta-eyebrow {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .portfolio-cta-enhanced h3 {
        font-size: 1.85rem;
    }

    .portfolio-cta-enhanced p {
        font-size: 1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-feature i {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-content {
        gap: 1.75rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.15rem;
    }

    .footer-section p,
    .footer-section ul {
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }

    /* Value Icon */
    .value-icon img {
        height: 250px;
    }

    .value-prop h3 {
        font-size: 1.75rem;
    }
}

/* Extra small devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title-new {
        font-size: 1.6rem;
    }

    .hero-subtitle-new {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .stat-inline strong {
        font-size: 1rem;
    }

    .stat-inline span {
        font-size: 0.65rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.about-hero .lead {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.our-story {
    padding: 6rem 0;
    background: white;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
}

.story-image {
    float: left;
    margin: 0 2.5rem 1.5rem 0;
    width: 400px;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-text {
    overflow: auto;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.story-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.our-mission {
    padding: 6rem 0;
    background: var(--bg-light);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.value-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.value-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 30%;
}

.why-choose-us {
    padding: 6rem 0;
    background: white;
}

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

/* Why Choose Us Carousel */
.why-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.why-carousel {
    display: flex;
    gap: 2.5rem;
    overflow: hidden;
    scroll-behavior: smooth;
    transition: transform 0.5s ease-in-out;
}

.why-carousel .feature-card {
    flex: 0 0 calc(33.333% - 1.67rem);
    min-width: 320px;
    transition: all 0.3s ease;
}

.carousel-prev-why,
.carousel-next-why {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-prev-why:hover,
.carousel-next-why:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
}

.carousel-prev-why i,
.carousel-next-why i {
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.carousel-prev-why:hover i,
.carousel-next-why:hover i {
    color: white;
}

.carousel-prev-why {
    left: 10px;
}

.carousel-next-why {
    right: 10px;
}

.why-carousel-wrapper .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.why-carousel-wrapper .carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(32, 178, 170, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.why-carousel-wrapper .carousel-indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.why-carousel-wrapper .carousel-indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.our-approach {
    padding: 6rem 0;
    background: var(--bg-light);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.approach-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.about-stats .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-stats .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.about-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    margin-bottom: 1rem;
}

.about-stats .stat-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-cta {
    padding: 6rem 0;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-content .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Meet the Family Section */
.meet-family {
    padding: 6rem 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.meet-family::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(32, 178, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 127, 80, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.meet-family .container {
    position: relative;
    z-index: 1;
}

/* Family Carousel Styles */
.family-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 60px;
}

.family-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
}

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

.carousel-nav:hover i {
    color: white;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

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

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(32, 178, 170, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.carousel-indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.family-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.family-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.family-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.family-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    background: #f8f9fa;
}

.family-card:hover .family-card-image img {
    transform: scale(1.1);
}

.family-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.9), rgba(255, 127, 80, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.family-card:hover .family-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.family-card:hover .overlay-icon {
    transform: scale(1);
}

.overlay-icon i {
    font-size: 2.5rem;
    color: white;
}

.family-card-content {
    padding: 2rem;
    text-align: center;
}

.family-card-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.family-card-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.family-story-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.story-box-icon {
    position: absolute;
    top: -20px;
    left: 3rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
}

.story-box-icon i {
    font-size: 1.5rem;
    color: white;
}

.story-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    padding-top: 1rem;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.signature-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.signature-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
}

/* Animation on scroll (optional - works if AOS library is added) */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Responsive */
@media (max-width: 968px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero .lead {
        font-size: 1.2rem;
    }

    .mission-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image {
        float: none;
        width: 100%;
        margin: 0 0 2rem 0;
    }

    .story-image img,
    .mission-image img,
    .approach-image img {
        height: 400px;
    }

    .story-text h2,
    .mission-text h2,
    .approach-text h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .why-carousel-wrapper {
        padding: 0 60px;
    }

    .why-carousel .feature-card {
        flex: 0 0 calc(50% - 1.25rem);
        min-width: 280px;
    }

    .carousel-prev-why,
    .carousel-next-why {
        width: 50px;
        height: 50px;
    }

    .carousel-prev-why i,
    .carousel-next-why i {
        font-size: 1.1rem;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .family-carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
    }

    .carousel-nav i {
        font-size: 1rem;
    }

    .family-card-image {
        height: 350px;
    }

    .family-story-box {
        padding: 2.5rem;
    }

    .story-box-icon {
        width: 50px;
        height: 50px;
        left: 2.5rem;
    }

    .story-box-icon i {
        font-size: 1.25rem;
    }

    .story-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 100px 0 50px;
    }

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

    .about-hero .lead {
        font-size: 1.1rem;
    }

    .our-story,
    .our-mission,
    .why-choose-us,
    .our-approach,
    .about-stats,
    .about-cta {
        padding: 4rem 0;
    }

    .mission-content,
    .approach-content {
        gap: 2rem;
    }

    .story-image {
        float: none;
        width: 100%;
        margin: 0 0 1.5rem 0;
    }

    .story-image img,
    .mission-image img,
    .approach-image img {
        height: 300px;
    }

    .story-text h2,
    .mission-text h2,
    .approach-text h2 {
        font-size: 1.75rem;
    }

    .story-text h3,
    .approach-text h3 {
        font-size: 1.25rem;
    }

    .story-text p,
    .mission-text p {
        font-size: 1rem;
    }

    .mission-values,
    .approach-steps {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .value-item,
    .step-item {
        gap: 1rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .value-text h4,
    .step-content h4 {
        font-size: 1.15rem;
    }

    .value-text p,
    .step-content p {
        font-size: 0.95rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

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

    .why-carousel-wrapper {
        padding: 0 50px;
    }

    .why-carousel .feature-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-prev-why,
    .carousel-next-why {
        width: 45px;
        height: 45px;
    }

    .carousel-prev-why i,
    .carousel-next-why i {
        font-size: 1rem;
    }

    .why-carousel-wrapper .carousel-indicators {
        margin-top: 2rem;
    }

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

    .about-stats .stat-card {
        padding: 2.5rem 1.5rem;
    }

    .about-stats .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

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

    .about-stats .stat-label {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content .lead {
        font-size: 1.1rem;
    }

    .family-carousel-wrapper {
        padding: 0 40px;
        margin-bottom: 2.5rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav i {
        font-size: 0.9rem;
    }

    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .carousel-indicator.active {
        width: 24px;
    }

    .family-card-image {
        height: 320px;
    }

    .family-card-content {
        padding: 1.75rem;
    }

    .family-card-content h3 {
        font-size: 1.35rem;
    }

    .family-card-content p {
        font-size: 1rem;
    }

    .family-story-box {
        padding: 2rem 1.75rem;
    }

    .story-box-icon {
        width: 45px;
        height: 45px;
        top: -15px;
        left: 1.75rem;
    }

    .story-box-icon i {
        font-size: 1.1rem;
    }

    .story-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

/* Page Hero Section */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    background: var(--bg-light);
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Services CTA Section */
.services-cta-section {
    background: white;
    padding: 6rem 0;
}

.services-cta-section .cta-content {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    color: white;
}

.services-cta-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.services-cta-section .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.services-cta-section .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta-section .btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Responsive for Services Page */
@media (max-width: 968px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .page-hero p {
        font-size: 1.2rem;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .services-cta-section .cta-content {
        padding: 3rem 2rem;
    }

    .services-cta-section .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 100px 0 50px;
    }

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

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

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

    .process-step {
        padding: 1.75rem;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .process-step h3 {
        font-size: 1.3rem;
    }

    .services-cta-section .cta-content {
        padding: 2.5rem 1.75rem;
    }

    .services-cta-section .cta-content h2 {
        font-size: 1.75rem;
    }

    .services-cta-section .cta-content p {
        font-size: 1.05rem;
    }

    .services-cta-section .cta-buttons {
        flex-direction: column;
    }

    .services-cta-section .btn {
        width: 100%;
    }
}

/* Modern Work Page Styles */
.work-hero-modern {
    position: relative;
    padding: 160px 0 100px;
    background: var(--bg-white);
    overflow: hidden;
}

.work-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(32, 178, 170, 0.08) 0%, 
        rgba(255, 127, 80, 0.08) 100%);
    z-index: 0;
}

.work-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(32, 178, 170, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.work-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 127, 80, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge-work {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(32, 178, 170, 0.1);
    color: var(--primary-color);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid rgba(32, 178, 170, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge-work i {
    font-size: 1.1rem;
}

.work-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.work-hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.work-stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 2.5rem 0;
}

.work-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.work-stat .stat-num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.work-stat .stat-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Project Modern */
.featured-project-modern {
    padding: 6rem 0;
    background: white;
}

.featured-label-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.featured-label-modern i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.featured-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-visual {
    position: relative;
}

.video-wrapper-modern {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    height: 600px;
}

.video-wrapper-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Landscape Video Layout */
.featured-video-landscape {
    position: relative;
    margin-bottom: 4rem;
}

.video-wrapper-landscape {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-wrapper-landscape iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-details-landscape {
    max-width: 1200px;
    margin: 0 auto;
}

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

.details-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.details-header .featured-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.features-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.featured-badge-floating {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    color: var(--text-dark);
}

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

.featured-details h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.features-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(32, 178, 170, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.check-item:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateX(5px);
}

.check-item i {
    color: var(--success-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.check-item span {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.impact-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.08), rgba(255, 127, 80, 0.08));
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2.5rem;
}

.impact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.impact-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.4);
}

.btn-modern-primary i {
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
    transform: translateX(5px);
}

.btn-modern-primary.large {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
}

.btn-modern-secondary.large {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

/* Filter Section */
.work-filter-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.section-header-modern h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header-modern p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.filter-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pill-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.75rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.pill-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.2);
}

.pill-btn:hover i {
    transform: scale(1.1);
}

.pill-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.3);
}

.pill-btn.active i {
    color: white;
}

/* Portfolio Grid Modern */
.portfolio-grid-modern {
    padding: 6rem 0;
    background: white;
}

.grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.project-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.project-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-modern:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card-modern:hover .card-overlay {
    opacity: 1;
}

@media (hover: none) {
    .card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    }
}

.overlay-content {
    color: white;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.overlay-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.metrics-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metrics-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metrics-row i {
    font-size: 0.9rem;
}

.card-footer-modern {
    padding: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.card-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.card-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.card-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.card-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.4);
}

/* Modern CTA Section */
.work-cta-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.cta-box-modern {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(32, 178, 170, 0.3);
}

.cta-box-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box-modern > * {
    position: relative;
    z-index: 1;
}

.cta-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-icon-large i {
    font-size: 3rem;
    color: white;
}

.cta-box-modern h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-box-modern > p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-features-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.cta-feature-item i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.cta-feature-item span {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note-modern {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    margin-top: 1.5rem !important;
}

/* Program Benefits Section */
.program-benefits-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

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

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

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

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive for Modern Work Page */
@media (max-width: 968px) {
    .work-hero-title {
        font-size: 3rem;
    }

    .work-hero-subtitle {
        font-size: 1.15rem;
    }

    .work-stats-row {
        gap: 2rem;
    }

    .work-stat .stat-num {
        font-size: 2.5rem;
    }

    .featured-grid-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .video-wrapper-modern {
        height: 400px;
    }

    .video-wrapper-landscape {
        padding-bottom: 56.25%; /* Maintain 16:9 on tablet */
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .details-header h2 {
        font-size: 2.5rem;
    }

    .details-header .featured-lead {
        font-size: 1.15rem;
    }

    .featured-details h2 {
        font-size: 2.25rem;
    }

    .featured-lead {
        font-size: 1.1rem;
    }

    .grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    .cta-box-modern {
        padding: 4rem 2rem;
    }

    .cta-box-modern h2 {
        font-size: 2.5rem;
    }

    .cta-features-row {
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .steps-timeline::before {
        left: 30px;
    }

    .timeline-step {
        gap: 1.75rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .work-hero-modern {
        padding: 120px 0 60px;
    }

    .work-hero-title {
        font-size: 2.25rem;
    }

    .work-hero-subtitle {
        font-size: 1.05rem;
    }

    .work-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .work-stat .stat-num {
        font-size: 2rem;
    }

    .featured-label-modern {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }

    .video-wrapper-modern {
        height: 300px;
        border-radius: 15px;
    }

    .video-wrapper-landscape {
        padding-bottom: 56.25%; /* Maintain 16:9 on mobile */
        border-radius: 15px;
    }

    .featured-video-landscape {
        margin-bottom: 3rem;
    }

    .details-header {
        margin-bottom: 3rem;
    }

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

    .details-header .featured-lead {
        font-size: 1.05rem;
    }

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

    .features-column h3 {
        font-size: 1.3rem;
    }

    .featured-badge-floating {
        bottom: 15px;
        left: 15px;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .featured-details h2 {
        font-size: 1.85rem;
    }

    .featured-lead {
        font-size: 1rem;
    }

    .check-item {
        font-size: 0.95rem;
    }

    .impact-box {
        padding: 1.5rem;
    }

    .impact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

    .section-header-modern p {
        font-size: 1.05rem;
    }

    .filter-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .pill-btn {
        justify-content: center;
    }

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

    .card-image-wrapper {
        height: 280px;
    }

    .card-footer-modern {
        padding: 1.5rem;
    }

    .cta-box-modern {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .cta-icon-large {
        width: 80px;
        height: 80px;
    }

    .cta-icon-large i {
        font-size: 2.5rem;
    }

    .cta-box-modern h2 {
        font-size: 2rem;
    }

    .cta-box-modern > p {
        font-size: 1.1rem;
    }

    .cta-features-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
    }

    .btn-modern-primary.large,
    .btn-modern-secondary.large {
        width: 100%;
        justify-content: center;
    }

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

    .benefit-card {
        padding: 2rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

    .steps-timeline::before {
        left: 22.5px;
    }

    .timeline-step {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }

    .hero-background {
        height: 200px;
    }

    .hero-content {
        padding: 30px 0 40px;
    }

    .hero-title-new {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle-new {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats-inline {
        padding: 1rem 0;
    }

    .hero-badge-new {
        margin-bottom: 1rem;
    }

    section {
        padding: 3rem 0;
    }
}