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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    color: #1a1a1a;
    background: #fff;
    max-width: 100vw;
    padding-top: 65px;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-bg {
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e84393, #8e44ad, #3498db);
    border-radius: 12px;
    animation: spinBox 8s linear infinite;
}

@keyframes spinBox {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-icon {
    position: relative;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1;
}

.logo-icon span {
    background: linear-gradient(135deg, #1565c0, #6a1b9a, #c0247a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #1565c0, #6a1b9a, #c0247a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 11px;
    color: #666;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

.nav-links a i {
    font-size: 13px;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.nav-links a.active {
    color: #e67e22;
    border-bottom: 3px solid #e67e22;
}

.nav-links a.active i {
    color: #e67e22;
}

.nav-links a:hover {
    color: #e67e22;
    transform: translateY(-2px);
}

.nav-links a:hover i {
    color: #e67e22;
}

/* Dropdown */
.nav-dropdown{position:relative}
.nav-dropdown>a::after{content:'\f107';font-family:'Font Awesome 6 Free';font-weight:900;margin-left:5px;font-size:11px;transition:transform 0.3s}
.nav-dropdown:hover>a::after{transform:rotate(180deg)}
.nav-dropdown-menu{position:absolute;top:100%;left:0;background:#fff;min-width:240px;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,0.12);padding:10px 0;opacity:0;visibility:hidden;transform:translateY(10px);transition:all 0.3s;z-index:100;border:1px solid #f0f0f0}
.nav-dropdown:hover .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.nav-dropdown-menu a{display:flex;align-items:center;gap:10px;padding:10px 20px;color:#333;font-size:13px;font-weight:500;transition:all 0.2s;border-bottom:none!important}
.nav-dropdown-menu a:hover{background:#fef9f3;color:#e67e22;padding-left:24px}
.nav-dropdown-menu a i{width:18px;color:#e67e22;font-size:12px}

.btn-quote {
    background: linear-gradient(90deg, #e8654a, #e67e22, #d35400, #e8654a);
    background-size: 300% 100%;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230,126,34,0.3);
    animation: btnSlide 4s ease infinite, quoteZoom 3s ease infinite;
    position: relative;
    overflow: hidden;
}

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

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 3s ease infinite;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,126,34,0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 10px 0 20px;
    background: #fff;
}

.hero-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease, textZoom 4s ease infinite;
    white-space: nowrap;
    transform-origin: left center;
}

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

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

.gradient-text {
    background: linear-gradient(90deg, #e67e22, #d35400, #e8654a, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-left > p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    background-size: 300% 100%;
    animation: btnSlide 4s ease infinite;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 3s ease infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes btnSlide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes btnZoom {
    0%, 85% { transform: scale(1); }
    90% { transform: scale(1.08); }
    95% { transform: scale(1); }
    100% { transform: scale(1); }
}

.btn-primary { animation: btnSlide 4s ease infinite, btnZoom 4s ease infinite; }
.btn-portfolio { animation: btnSlide 4s ease infinite, btnZoom 5s ease infinite; }
.btn-book { animation: btnSlide 4s ease infinite, btnZoom 6s ease infinite; }

.btn .icon-spin {
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn i {
    display: inline-block;
    animation: iconWiggle 3s ease infinite;
}

@keyframes iconWiggle {
    0%, 70% { transform: translateX(0); }
    75% { transform: translateX(4px); }
    80% { transform: translateX(-2px); }
    85% { transform: translateX(3px); }
    90% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}

.btn-primary {
    background: linear-gradient(90deg, #e67e22, #e74c3c, #8e44ad, #e67e22);
    background-size: 300% 100%;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(142,68,173,0.5);
}

.btn-portfolio {
    background: linear-gradient(90deg, #e74c3c, #e67e22, #f1c40f, #e74c3c);
    background-size: 300% 100%;
    color: #fff;
}

.btn-portfolio:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(231,76,60,0.5);
}

.btn-book {
    background: linear-gradient(90deg, #10b981, #0ea5e9, #8b5cf6, #10b981);
    background-size: 300% 100%;
    color: #fff;
}

.btn-book:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(13,148,136,0.5);
}

/* Hero Right */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.hero-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-card-overlay {
    background: rgba(15,10,40,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    margin: 20px;
}

.hero-card:hover {
    transform: translateY(-8px);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(0,150,255,0.15), transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(180,0,255,0.1), transparent 50%);
    z-index: 0;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg, rgba(5,5,20,0.9), transparent);
    z-index: 0;
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(243,156,18,0.6), 0 0 60px rgba(243,156,18,0.2);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 25px rgba(243,156,18,0.6), 0 0 60px rgba(243,156,18,0.2); }
    50% { box-shadow: 0 0 35px rgba(243,156,18,0.8), 0 0 80px rgba(243,156,18,0.4); }
}

.hero-card h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-card > p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 30px;
    font-weight: 400;
}

.card-watermark {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    opacity: 0.25;
    letter-spacing: 2px;
    z-index: 1;
}

.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #2196F3;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

/* Stats Section */
.stats {
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.stats-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.stat-item {
    transition: transform 0.3s ease;
}

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

.stat-item:nth-child(1) h3 {
    color: #2196F3;
}

.stat-item:nth-child(2) h3 {
    color: #1a1a2e;
}

.stat-item:nth-child(3) h3 {
    color: #1a1a2e;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
}

.stat-item p {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.hero-stats .stat-item h3 {
    font-size: 36px;
    font-weight: 600;
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-item:nth-child(1) h3 {
    background-image: linear-gradient(90deg, #2196F3, #00bcd4, #2196F3);
    animation: shimmer 3s linear infinite;
}

.hero-stats .stat-item:nth-child(2) h3 {
    background-image: linear-gradient(90deg, #1a1a2e, #6a1b9a, #1a1a2e);
    animation: shimmer 3s linear infinite;
}

.hero-stats .stat-item:nth-child(3) h3 {
    background-image: linear-gradient(90deg, #1a1a2e, #e74c3c, #1a1a2e);
    animation: shimmer 3s linear infinite;
}

.hero-stats .stat-item p {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.5px;
}



/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 2000;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 60px;
    padding-right: 30px;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    width: 350px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not([value=""]),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #2ecc71;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2196F3;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 10px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 5px;
}

.btn-submit:hover {
    background: #d35400;
}

/* When sidebar is moved to body by JS, hide on desktop */
body > .nav-links {
    display: none;
}
body > .nav-overlay {
    display: none;
}

.sidebar-header { display: none; }
.sidebar-close { display: none; }

/* Responsive */
@media (max-width: 992px) {
    /* === MOBILE SIDEBAR (Amazon-style) === */
    body > .nav-links {
        display: flex;
    }
    body > .nav-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
    }
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100%;
        background: #fff;
        flex-direction: column;
        padding: 16px 20px 30px;
        gap: 4px;
        box-shadow: 4px 0 25px rgba(0,0,0,0.12);
        z-index: 100001;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        will-change: transform;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    /* Sidebar header */
    .sidebar-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 0 0 12px 0;
        margin: 0 0 6px 0;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
        gap: 10px;
    }
    .sidebar-header .logo {
        display: flex !important;
        transform: scale(0.75);
        transform-origin: left center;
        pointer-events: none;
        margin: 0;
        flex: 1;
        min-width: 0;
    }
    .sidebar-close {
        width: 32px;
        height: 32px;
        border: none;
        background: #f5f5f5;
        border-radius: 50%;
        font-size: 22px;
        color: #666;
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        flex-shrink: 0;
        line-height: 1;
        margin-right: 8px;
    }
    .sidebar-close:hover {
        background: #fee2e2;
        color: #ef4444;
    }
    .nav-links a {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 14px;
        transition: all 0.2s;
    }
    .nav-links a:hover, .nav-links a.active {
        background: #fef3e2;
        color: #e67e22;
    }
    .nav-links a i {
        width: 22px;
        font-size: 14px;
        color: #e67e22;
    }
    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 100000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    /* Dropdown in sidebar */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 8px;
        background: #f8f9fc;
        padding: 6px 0;
        margin: 4px 0 4px 20px;
        min-width: auto;
        display: none;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown-menu a {
        padding: 8px 14px;
        font-size: 12px !important;
    }
    .hamburger {
        display: flex;
    }
    .btn-quote {
        padding: 10px 20px;
        font-size: 13px;
    }
    /* Mobile logo smaller */
    .logo-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    .logo-icon-bg {
        width: 28px;
        height: 28px;
    }
    .logo-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    .logo-title {
        font-size: 13px;
    }
    .logo-subtitle {
        font-size: 8px;
    }
    .logo {
        gap: 6px;
    }
    .btn-quote {
        padding: 8px 16px;
        font-size: 11px;
        white-space: nowrap;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-left h1 {
        font-size: 36px;
        white-space: normal;
    }
    .gradient-text {
        font-size: 40px;
    }
    .hero-left > p {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        white-space: nowrap;
    }
    .hero-stats {
        justify-content: center;
        gap: 40px;
    }
    .stats-container {
        justify-content: center;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        width: 260px;
        padding: 14px 16px 30px;
    }
    .btn-quote {
        padding: 8px 18px;
        font-size: 12px;
    }
    .hero-left h1 {
        font-size: 28px;
        white-space: normal;
    }
    .gradient-text {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        white-space: nowrap;
        justify-content: center;
        width: 100%;
    }
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    .modal-overlay {
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    /* Fix mobile - full width everything */
    .nav-container {
        padding: 0 8px;
    }
    .hero-container,
    .stats-container,
    .about-container,
    .services-container,
    .pricing-container,
    .portfolio-container,
    .contact-container,
    .reviews-container,
    .team-container,
    .footer-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    /* Cards full screen width */
    .services-grid,
    .pricing-grid,
    .portfolio-grid {
        padding: 0 8px;
        gap: 12px;
    }
    .service-card,
    .about-card,
    .pr-card,
    .pf-card,
    .ci-card,
    .contact-form-wrap,
    .rev-slide {
        border-radius: 0;
        border-left: none;
        border-right: none;
        width: 100%;
    }
    .service-card {
        padding: 20px 16px;
        margin: 0 -8px;
        width: calc(100% + 16px);
        border-radius: 0;
    }
    .about-card {
        padding: 20px 16px;
    }
    .pr-card {
        padding: 20px 16px;
        margin: 0 -8px;
        width: calc(100% + 16px);
        border-radius: 0;
    }
    .pf-card {
        margin: 0 -8px;
        width: calc(100% + 16px);
        border-radius: 0;
    }
    .pf-body {
        padding: 16px;
    }
    .contact-form-wrap {
        padding: 20px 16px;
        border-radius: 0;
        margin: 0 -8px;
        width: calc(100% + 16px);
    }
    .ci-card {
        padding: 16px;
        border-radius: 12px;
    }
    .services-cta {
        padding: 30px 16px;
        border-radius: 0;
        margin: 0 -8px;
        width: calc(100% + 16px);
    }
    .services-header,
    .pricing-header,
    .portfolio-header,
    .contact-header,
    .reviews-header,
    .team-header,
    .about-badge,
    .about-left,
    .about-right,
    .about-texts,
    .portfolio-filters,
    .portfolio-bottom,
    .contact-content,
    .contact-info-wrap,
    .ci-intro {
        padding-left: 12px;
        padding-right: 12px;
    }
    .about-right {
        gap: 0;
    }
    .about-card {
        border-radius: 0;
        margin: 0 -12px;
        width: calc(100% + 24px);
    }
    .about-cta-btn {
        margin-left: 12px;
    }
    .rev-slide {
        border-radius: 12px;
        padding: 14px;
    }
}


/* ===== ABOUT SECTION ===== */
.about {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 10s ease-in-out infinite;
}

.about-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-left {
    flex: 1.2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.about-title-gradient {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(90deg, #e67e22, #d35400, #e8654a, #e67e22);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.about-texts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.about-texts p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.about-texts p:hover {
    border-left-color: #e67e22;
    color: #222;
    padding-left: 20px;
}

/* About CTA Button */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(90deg, #e8654a, #e67e22, #d35400, #e8654a);
    background-size: 300% 100%;
    animation: btnLive 4s ease infinite;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 6px 25px rgba(230,126,34,0.3);
    position: relative;
    overflow: hidden;
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}

.about-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(230,126,34,0.4);
}

.about-cta-btn:hover::before {
    left: 100%;
}

.about-cta-btn i.fa-rocket {
    animation: rocketShake 2s ease infinite;
}

.about-cta-btn i.fa-arrow-right {
    font-size: 12px;
    transition: transform 0.3s;
}

.about-cta-btn:hover i.fa-arrow-right {
    transform: translateX(5px);
}

/* About Right - Feature Cards */
.about-right {
    flex: 0.8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102,126,234,0.1);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(102,126,234,0.15);
    border-color: rgba(102,126,234,0.2);
}

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

.about-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
    transition: all 0.4s;
}

.about-card:nth-child(1) .about-card-icon { background: linear-gradient(135deg, #e8f0fe, #c7d9fc); color: #3b82f6; }
.about-card:nth-child(2) .about-card-icon { background: linear-gradient(135deg, #fce8f3, #f5c0dd); color: #ec4899; }
.about-card:nth-child(3) .about-card-icon { background: linear-gradient(135deg, #ede9fe, #d0c7f9); color: #8b5cf6; }
.about-card:nth-child(4) .about-card-icon { background: linear-gradient(135deg, #e6f9f0, #b8efd5); color: #10b981; }

.about-card:hover .about-card-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.about-card:hover h4 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* About - Stagger Animation */
.about-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.5s ease forwards;
}
.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }

/* About Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    .about-left, .about-right {
        flex: 1;
    }
    .about-title { font-size: 36px; }
    .about-title-gradient { font-size: 40px; }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    .about-title { font-size: 28px; }
    .about-title-gradient { font-size: 32px; }
    .about-right {
        grid-template-columns: 1fr;
    }
    .about-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .about-cta-btn {
        font-size: 13px;
        padding: 14px 24px;
    }
}

/* ===== SERVICES SECTION - WOW ===== */
.services {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 50%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102,126,234,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 8s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118,75,162,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 10s ease-in-out infinite reverse;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.services-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Badge with dots */
.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation: dotPulse 2s ease infinite;
}

.badge-dot:nth-child(3) { animation-delay: 1s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

/* Split Title */
.services-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease;
}

.services-title-gradient {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(90deg, #e67e22, #d35400, #e8654a, #e67e22);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.services-header p {
    font-size: 15px;
    color: #555;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Star Divider */
.services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 18px auto 0;
    max-width: 250px;
}

.services-divider span {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.services-divider i {
    color: #f59e0b;
    font-size: 14px;
    animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.3); }
    100% { transform: rotate(360deg) scale(1); }
}

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

/* Service Card - Glassmorphism + Glow */
.service-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 38px 32px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.6);
    opacity: 0;
    transform: translateY(40px);
    animation: cardReveal 0.6s ease forwards;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Gradient top border */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ec4899);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glow effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(102,126,234,0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102,126,234,0.18);
    border-color: rgba(102,126,234,0.2);
}

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

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

/* Service Icon - Animated */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, transparent 40%, rgba(102,126,234,0.2));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #e8f0fe, #c7d9fc); color: #3b82f6; }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #fce8f3, #f5c0dd); color: #ec4899; }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #e6f9f0, #b8efd5); color: #10b981; }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #fff3e0, #ffddb3); color: #f59e0b; }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #ede9fe, #d0c7f9); color: #8b5cf6; }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #fee2e2, #fbb5b5); color: #ef4444; }

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #e67e22, #d35400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card > p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.service-card:hover .service-features li {
    transform: translateX(4px);
}

.service-features li:nth-child(1) { transition-delay: 0.05s; }
.service-features li:nth-child(2) { transition-delay: 0.1s; }
.service-features li:nth-child(3) { transition-delay: 0.15s; }
.service-features li:nth-child(4) { transition-delay: 0.2s; }

.service-features li i {
    color: #10b981;
    font-size: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #e6f9f0, #d0f5e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.service-card:hover .service-features li i {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    transform: scale(1.1);
}

/* Service Button - LIVE GRADIENT */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    background-size: 300% 100%;
    animation: btnLive 4s ease infinite;
    width: fit-content;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

@keyframes btnLive {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    gap: 12px;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn i.fa-whatsapp { font-size: 13px; }
.service-btn i.fa-arrow-right { font-size: 10px; transition: transform 0.3s; }
.service-btn:hover i.fa-arrow-right { transform: translateX(4px); }

/* Each button unique 3-color live gradient */
.service-card:nth-child(1) .service-btn { background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6, #3b82f6); background-size: 300% 100%; box-shadow: 0 4px 18px rgba(59,130,246,0.35); }
.service-card:nth-child(1) .service-btn:hover { box-shadow: 0 10px 35px rgba(59,130,246,0.5); }

.service-card:nth-child(2) .service-btn { background: linear-gradient(90deg, #ec4899, #f59e0b, #8b5cf6, #ec4899); background-size: 300% 100%; box-shadow: 0 4px 18px rgba(236,72,153,0.35); }
.service-card:nth-child(2) .service-btn:hover { box-shadow: 0 10px 35px rgba(236,72,153,0.5); }

.service-card:nth-child(3) .service-btn { background: linear-gradient(90deg, #10b981, #3b82f6, #06b6d4, #10b981); background-size: 300% 100%; box-shadow: 0 4px 18px rgba(16,185,129,0.35); }
.service-card:nth-child(3) .service-btn:hover { box-shadow: 0 10px 35px rgba(16,185,129,0.5); }

.service-card:nth-child(4) .service-btn { background: linear-gradient(90deg, #f59e0b, #ef4444, #ec4899, #f59e0b); background-size: 300% 100%; box-shadow: 0 4px 18px rgba(245,158,11,0.35); }
.service-card:nth-child(4) .service-btn:hover { box-shadow: 0 10px 35px rgba(245,158,11,0.5); }

.service-card:nth-child(5) .service-btn { background: linear-gradient(90deg, #8b5cf6, #ec4899, #3b82f6, #8b5cf6); background-size: 300% 100%; box-shadow: 0 4px 18px rgba(139,92,246,0.35); }
.service-card:nth-child(5) .service-btn:hover { box-shadow: 0 10px 35px rgba(139,92,246,0.5); }

.service-card:nth-child(6) .service-btn { background: linear-gradient(90deg, #ef4444, #f59e0b, #8b5cf6, #ef4444); background-size: 300% 100%; box-shadow: 0 4px 18px rgba(239,68,68,0.35); }
.service-card:nth-child(6) .service-btn:hover { box-shadow: 0 10px 35px rgba(239,68,68,0.5); }

/* Services CTA - POWERFUL */
.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2, #ec4899);
    background-size: 200% 200%;
    animation: ctaGradient 6s ease infinite;
    border-radius: 24px;
    padding: 65px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

@keyframes ctaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: ctaShine 5s ease infinite;
}

@keyframes ctaShine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.services-cta h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.services-cta .cta-btn {
    background: #fff;
    color: #667eea;
    display: inline-flex;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-radius: 50px;
    gap: 10px;
}

.services-cta .cta-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 14px 45px rgba(255,255,255,0.35);
}

.services-cta .cta-btn i.fa-rocket {
    animation: rocketShake 2s ease infinite;
}

@keyframes rocketShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.services-cta .cta-btn-call {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    display: inline-flex;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    position: relative;
    z-index: 1;
    border-radius: 50px;
    gap: 10px;
    margin-left: 16px;
    text-decoration: none;
}

.services-cta .cta-btn-call i {
    animation: none !important;
    transform: rotate(0deg) !important;
}

.services-cta .cta-btn-call:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.services-cta .cta-btn-call:hover i {
    animation: phoneRing 0.5s ease;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    60% { transform: rotate(10deg); }
    80% { transform: rotate(-10deg); }
}

/* Services Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-title { font-size: 36px; }
    .services-title-gradient { font-size: 40px; }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }
    .services-title { font-size: 28px; }
    .services-title-gradient { font-size: 32px; }
    .services-header {
        margin-bottom: 40px;
    }
    .services-stats {
        padding: 14px 24px;
        gap: 18px;
    }
    .s-stat h4 { font-size: 18px; }
    .services-cta h3 {
        font-size: 24px;
    }
    .services-cta {
        padding: 40px 24px;
        border-radius: 18px;
    }
    .services-cta .cta-btn-call {
        margin-left: 0;
        margin-top: 12px;
    }
    .service-card {
        padding: 24px 16px;
        border-radius: 16px;
        margin: 0;
    }
    .service-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-title { font-size: 22px; }
    .services-title-gradient { font-size: 24px; }
    .section-tag { font-size: 10px; padding: 6px 16px; letter-spacing: 2px; }
}


/* ===== PRICING SECTION ===== */
.pricing{padding:60px 0;background:#fff}
.pricing-container{max-width:95%;margin:0 auto;padding:0 40px}
.pricing-header{text-align:center;margin-bottom:40px}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pr-card{background:#fff;border:2px solid #f0f0f0;border-radius:20px;padding:32px 28px;text-align:center;transition:all 0.4s;position:relative;overflow:hidden;display:flex;flex-direction:column}
.pr-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,0.1);border-color:#e0e0e0}
.pr-recommended{border-color:#e67e22;box-shadow:0 8px 30px rgba(230,126,34,0.15)}
.pr-recommended:hover{box-shadow:0 20px 50px rgba(230,126,34,0.2)}
.pr-badge{position:absolute;top:16px;right:-30px;background:linear-gradient(135deg,#e67e22,#d35400);color:#fff;font-size:11px;font-weight:700;padding:5px 40px;transform:rotate(45deg);letter-spacing:0.5px}
.pr-off{display:inline-block;background:#d1fae5;color:#065f46;font-size:12px;font-weight:700;padding:4px 14px;border-radius:20px;margin-bottom:12px}
.pr-icon{font-size:40px;margin-bottom:12px}
.pr-name{font-size:20px;font-weight:700;color:#1a1a1a;margin-bottom:6px;font-family:'Montserrat',sans-serif}
.pr-best{font-size:13px;color:#888;margin-bottom:16px}
.pr-price{display:flex;align-items:baseline;justify-content:center;gap:8px;margin-bottom:8px}
.pr-orig{font-size:16px;color:#aaa;text-decoration:line-through;font-weight:500}
.pr-disc{font-size:32px;font-weight:800;color:#e67e22;font-family:'Montserrat',sans-serif}
.pr-suffix{font-size:14px;color:#888;font-weight:500}
.pr-save{font-size:12px;color:#10b981;font-weight:600;margin-bottom:16px}
.pr-features{list-style:none;padding:0;margin:0 0 24px;text-align:left;flex:1}
.pr-features li{font-size:13px;color:#444;padding:8px 0;border-bottom:1px solid #f5f5f5;display:flex;align-items:center;gap:10px}
.pr-features li:last-child{border-bottom:none}
.pr-features li i{color:#10b981;font-size:11px;width:20px;height:20px;background:#e6f9f0;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.pr-btn{display:flex;align-items:center;justify-content:center;gap:8px;padding:14px 24px;background:linear-gradient(135deg,#e67e22,#d35400);color:#fff;border-radius:12px;text-decoration:none;font-weight:700;font-size:14px;transition:all 0.3s;margin-top:auto}
.pr-btn:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(230,126,34,0.35)}
.pr-recommended .pr-btn{background:linear-gradient(135deg,#1a1a1a,#333);box-shadow:0 4px 15px rgba(0,0,0,0.2)}
.pr-recommended .pr-btn:hover{box-shadow:0 8px 25px rgba(0,0,0,0.3)}
@media(max-width:992px){.pricing-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:576px){.pricing-grid{grid-template-columns:1fr;padding:0 8px;gap:12px}.pr-card{padding:20px 16px;border-radius:0;margin:0 -8px;width:calc(100% + 16px)}}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118,75,162,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 10s ease-in-out infinite;
}

.portfolio-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

.portfolio-desc {
    font-size: 15px;
    color: #888;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Filter Buttons */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.pf-btn {
    padding: 10px 26px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.pf-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.pf-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(102,126,234,0.35);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

/* Project Card */
.pf-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
}

.pf-card:nth-child(1) { animation: none; }
.pf-card:nth-child(2) { animation: none; }
.pf-card:nth-child(3) { animation: none; }
.pf-card:nth-child(4) { animation: none; }
.pf-card:nth-child(5) { animation: none; }
.pf-card:nth-child(6) { animation: none; }

.pf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(102,126,234,0.14);
    border-color: rgba(102,126,234,0.15);
}

/* Card Image/Icon Area */
.pf-img {
    min-height: 200px;
    max-height: 280px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.pf-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    transition: transform 3s ease;
}

.pf-card:hover .pf-img img {
    transform: translateY(-20%);
}

/* Result Badge */
.pf-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 10px;
}

.pf-result i {
    font-size: 10px;
    animation: none !important;
    transform: none !important;
}

/* Live Site Button */
.pf-links {
    margin-top: auto;
    text-align: center;
}

.pf-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ec4899, #667eea);
    background-size: 300% 100%;
    animation: btnLive 4s ease infinite;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(102,126,234,0.25);
}

.pf-live-btn i {
    font-size: 11px;
    animation: none !important;
    transform: none !important;
}

.pf-live-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

/* 10 Portfolio Button Colors */
.pf-btn-blue-cyan{background:linear-gradient(90deg,#3b82f6,#06b6d4,#3b82f6);background-size:300% 100%;box-shadow:0 3px 12px rgba(59,130,246,0.25)}
.pf-btn-orange-red{background:linear-gradient(90deg,#e67e22,#ef4444,#e67e22);background-size:300% 100%;box-shadow:0 3px 12px rgba(230,126,34,0.25)}
.pf-btn-green-teal{background:linear-gradient(90deg,#10b981,#14b8a6,#10b981);background-size:300% 100%;box-shadow:0 3px 12px rgba(16,185,129,0.25)}
.pf-btn-purple-pink{background:linear-gradient(90deg,#8b5cf6,#ec4899,#8b5cf6);background-size:300% 100%;box-shadow:0 3px 12px rgba(139,92,246,0.25)}
.pf-btn-red-orange{background:linear-gradient(90deg,#ef4444,#f59e0b,#ef4444);background-size:300% 100%;box-shadow:0 3px 12px rgba(239,68,68,0.25)}
.pf-btn-teal-blue{background:linear-gradient(90deg,#14b8a6,#3b82f6,#14b8a6);background-size:300% 100%;box-shadow:0 3px 12px rgba(20,184,166,0.25)}
.pf-btn-pink-purple{background:linear-gradient(90deg,#ec4899,#a855f7,#ec4899);background-size:300% 100%;box-shadow:0 3px 12px rgba(236,72,153,0.25)}
.pf-btn-amber-yellow{background:linear-gradient(90deg,#f59e0b,#eab308,#f59e0b);background-size:300% 100%;box-shadow:0 3px 12px rgba(245,158,11,0.25)}
.pf-btn-indigo-violet{background:linear-gradient(90deg,#6366f1,#7c3aed,#6366f1);background-size:300% 100%;box-shadow:0 3px 12px rgba(99,102,241,0.25)}
.pf-btn-dark-gray{background:linear-gradient(90deg,#1a1a1a,#4b5563,#1a1a1a);background-size:300% 100%;box-shadow:0 3px 12px rgba(0,0,0,0.2)}

.pf-card:nth-child(1) .pf-img { background: linear-gradient(135deg, #e8f0fe, #d4e4fd); color: #3b82f6; }
.pf-card:nth-child(2) .pf-img { background: linear-gradient(135deg, #e6f9f0, #ccf3e0); color: #10b981; }
.pf-card:nth-child(3) .pf-img { background: linear-gradient(135deg, #fce8f3, #f9d0e7); color: #ec4899; }
.pf-card:nth-child(4) .pf-img { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #8b5cf6; }
.pf-card:nth-child(5) .pf-img { background: linear-gradient(135deg, #fff3e0, #ffe8cc); color: #f59e0b; }
.pf-card:nth-child(6) .pf-img { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #ef4444; }

.pf-img i {
    transition: all 0.5s;
    animation: none !important;
    transform: none !important;
}

.pf-card:hover .pf-img i {
    transform: scale(1.2) rotate(-8deg) !important;
}

/* Card Body */
.pf-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pf-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.pf-card:hover .pf-body h3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf-body > p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Tech Tags */
.pf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.pf-tags span {
    padding: 4px 12px;
    background: #f0f2ff;
    color: #667eea;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s;
}

.pf-card:hover .pf-tags span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

/* View Link */
.pf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s;
}

.pf-link i {
    font-size: 11px;
    animation: none !important;
    transform: none !important;
    transition: transform 0.3s !important;
}

.pf-link:hover {
    color: #764ba2;
    gap: 10px;
}

.pf-link:hover i {
    transform: translateX(3px) !important;
}

/* Portfolio Bottom */
.portfolio-bottom {
    text-align: center;
}

/* Portfolio Responsive */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pf-card {
        border-radius: 16px;
    }
    .pf-body {
        padding: 18px 14px;
    }
    .portfolio-filters {
        gap: 8px;
    }
    .pf-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}


/* ===== CONTACT SECTION ===== */
.contact {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 50%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 8s ease-in-out infinite;
}

.contact-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Contact Form */
.contact-form-wrap {
    flex: 1.3;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.contact-form-wrap h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-wrap h3 i {
    color: #667eea;
    animation: none !important;
    transform: none !important;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cf-group {
    margin-bottom: 18px;
}

.cf-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    outline: none;
    transition: all 0.3s;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.cf-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ec4899, #667eea);
    background-size: 300% 100%;
    animation: btnLive 4s ease infinite;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 6px 25px rgba(102,126,234,0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.cf-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}

.cf-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(102,126,234,0.4);
}

.cf-submit:hover::before {
    left: 100%;
}

.cf-submit i {
    animation: none !important;
    transform: none !important;
}

/* Contact Info Side */
.contact-info-wrap {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ci-intro h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ci-intro p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* Info Cards */
.ci-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102,126,234,0.08);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.5s ease forwards;
}

.ci-card:nth-child(2) { animation-delay: 0.1s; }
.ci-card:nth-child(3) { animation-delay: 0.2s; }
.ci-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

.ci-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(102,126,234,0.12);
    border-color: rgba(102,126,234,0.15);
}

.ci-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s;
}

.ci-card:nth-child(2) .ci-icon { background: linear-gradient(135deg, #e8f0fe, #c7d9fc); color: #3b82f6; }
.ci-card:nth-child(3) .ci-icon { background: linear-gradient(135deg, #e6f9f0, #b8efd5); color: #10b981; }
.ci-card:nth-child(4) .ci-icon { background: linear-gradient(135deg, #fce8f3, #f5c0dd); color: #ec4899; }

.ci-icon i {
    animation: none !important;
    transform: none !important;
}

.ci-card:hover .ci-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ci-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.ci-text a {
    display: block;
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s;
    word-break: break-word;
}

.ci-text a:hover {
    color: #764ba2;
}

.ci-text span {
    font-size: 12px;
    color: #aaa;
}

/* Social Links */
.ci-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.ci-social {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.ci-social i {
    animation: none !important;
    transform: none !important;
}

.ci-social.wa { background: #25D366; }
.ci-social.fb { background: #1877F2; }
.ci-social.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ci-social.li { background: #0A66C2; }
.ci-social.yt { background: #FF0000; }

.ci-social:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        gap: 24px;
    }
    .contact-form-wrap, .contact-info-wrap {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
    .contact-container {
        padding: 0 16px;
    }
    .contact-content {
        gap: 20px;
    }
    .cf-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-wrap {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .contact-header {
        margin-bottom: 24px;
    }
    .contact-header .services-title,
    .contact .services-title {
        font-size: 22px;
        line-height: 1.3;
    }
    .contact-header .services-title-gradient,
    .contact .services-title-gradient {
        font-size: 24px;
        line-height: 1.3;
    }
    .contact-form-wrap h3 {
        font-size: 16px;
    }
    .ci-intro h3 {
        font-size: 18px;
    }
    .ci-card {
        padding: 16px;
    }
    .ci-text a {
        font-size: 13px;
        word-break: break-all;
    }
    .ci-text h4 {
        font-size: 14px;
    }
    .cf-submit {
        font-size: 14px;
        padding: 14px 20px;
    }
    .section-tag {
        font-size: 11px;
        padding: 6px 18px;
        letter-spacing: 2px;
    }
    .cf-group input,
    .cf-group select,
    .cf-group textarea {
        padding: 11px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 30px 0;
    }
    .contact-container {
        padding: 0 12px;
    }
    .contact-header .services-title,
    .contact .services-title {
        font-size: 20px;
    }
    .contact-header .services-title-gradient,
    .contact .services-title-gradient {
        font-size: 22px;
    }
    .contact-form-wrap {
        padding: 18px 14px;
    }
    .contact-form-wrap h3 {
        font-size: 15px;
        flex-wrap: wrap;
    }
    .cf-group input,
    .cf-group select,
    .cf-group textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
    .cf-group label {
        font-size: 12px;
    }
    .ci-card {
        padding: 14px;
    }
    .ci-appt-btn {
        justify-content: center;
        width: 100%;
    }
    .section-tag {
        font-size: 10px;
        padding: 5px 14px;
        letter-spacing: 1.5px;
    }
    .services-badge {
        margin-bottom: 10px;
    }
}


/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ec4899, #667eea);
    background-size: 300% 100%;
    animation: btnLive 4s ease infinite;
}

.footer-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-top .footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

/* Brand Column */
.ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.ft-logo .logo-icon-wrapper { width: 45px; height: 45px; }
.ft-logo .logo-icon-bg { width: 40px; height: 40px; }
.ft-logo .logo-icon { width: 37px; height: 37px; font-size: 20px; }
.ft-logo .logo-title { font-size: 16px; }
.ft-logo .logo-subtitle { font-size: 10px; color: #888; }

.ft-desc {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 22px;
}

.ft-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.ft-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.ft-socials a i {
    animation: none !important;
    transform: none !important;
}

.ft-socials a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255,255,255,0.15);
    filter: brightness(1.2);
}

/* Links Columns */
.ft-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.ft-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
}

.ft-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ft-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ft-col ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s;
    display: inline-block;
}

.ft-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.ft-col ul li a:hover::before {
    width: 12px;
}

/* Contact Info */
.ft-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.ft-ci {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.ft-ci i {
    color: #667eea;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 14px;
    animation: none !important;
    transform: none !important;
}

.ft-ci a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.ft-ci a:hover {
    color: #667eea;
}

/* Newsletter */
.ft-newsletter h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ft-nl-form {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.ft-nl-form input {
    flex: 1;
    padding: 11px 14px;
    background: rgba(255,255,255,0.05);
    border: none;
    color: #fff;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.ft-nl-form input::placeholder {
    color: #666;
}

.ft-nl-form button {
    padding: 11px 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ft-nl-form button i {
    animation: none !important;
    transform: none !important;
    font-size: 14px;
    display: inline-block;
}

.ft-nl-form button:hover {
    background: linear-gradient(135deg, #764ba2, #ec4899);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

.fb-links {
    display: flex;
    gap: 24px;
}

.fb-links a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.fb-links a:hover {
    color: #667eea;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-top {
        padding: 50px 0 30px;
    }
    .ft-logo {
        justify-content: center;
    }
    .ft-socials {
        justify-content: center;
    }
    .ft-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .ft-col ul {
        align-items: center;
    }
    .ft-contact {
        align-items: center;
    }
    .ft-ci {
        justify-content: center;
        text-align: center;
    }
    .ft-newsletter {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ft-nl-form {
        max-width: 280px;
        width: 100%;
    }
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .fb-links {
        gap: 16px;
        justify-content: center;
    }
}


/* ===== CONTACT FORM VALIDATION ===== */
.cf-error {
    display: none;
    font-size: 11px;
    color: #ef4444;
    margin-top: 4px;
    font-weight: 500;
}

.cf-group input:invalid:not(:placeholder-shown),
.cf-group select:invalid:not([value=""]),
.cf-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.cf-group input:invalid:not(:placeholder-shown) ~ .cf-error,
.cf-group textarea:invalid:not(:placeholder-shown) ~ .cf-error {
    display: block;
}

.cf-group input:valid:not(:placeholder-shown),
.cf-group select:valid,
.cf-group textarea:valid:not(:placeholder-shown) {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1) !important;
}


/* Appointment Button */
.ci-appt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #25d366;
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 3px 12px rgba(102,126,234,0.25);
}

.ci-appt-btn i {
    animation: none !important;
    transform: none !important;
    font-size: 13px;
}

.ci-appt-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37,211,102,0.45);
    background: #1fa855;
}


/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 50%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

/* Google Rating Bar */
.google-rating-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-top: 24px;
    border: 1px solid rgba(0,0,0,0.04);
}

.g-icon {
    width: 22px;
    height: 22px;
}

.g-stars {
    font-size: 16px;
    letter-spacing: 2px;
}

.g-score {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
}

.g-text {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

/* Reviews Slider */
.reviews-slider-wrap {
    overflow: hidden;
    margin: 0 -30px;
    padding: 10px 30px;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: none;
}

.rev-slide {
    min-width: calc(25% - 18px);
    max-width: calc(25% - 18px);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 18px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.rev-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(102,126,234,0.12);
    border-color: rgba(102,126,234,0.12);
}

/* Review Card */
.rev-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(25px);
    animation: cardReveal 0.5s ease forwards;
}

.rev-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102,126,234,0.12);
    border-color: rgba(102,126,234,0.12);
}

.rev-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rev-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.rev-info {
    flex: 1;
}

.rev-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.rev-info span {
    font-size: 10px;
    color: #999;
}

.rev-g-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.rev-stars {
    margin-bottom: 6px;
}

.rev-stars i {
    color: #f59e0b;
    font-size: 11px;
    margin-right: 2px;
    animation: none !important;
    transform: none !important;
}

.rev-stars i.far {
    color: #ddd;
}

.rev-slide > p, .rev-text-wrap p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.rev-expanded .rev-text-wrap p {
    -webkit-line-clamp: unset;
    display: block;
}

.rev-more {
    font-size: 11px;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    display: inline-block;
    transition: color 0.3s;
}

.rev-more:hover {
    color: #764ba2;
}

/* Reviews Responsive */
@media (max-width: 992px) {
    .rev-slide {
        min-width: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    .rev-slide {
        min-width: 85%;
        max-width: 85%;
    }
    .google-rating-bar {
        padding: 10px 20px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* Review Form */
.review-form-wrap {
    max-width: 700px;
    margin: 50px auto 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.review-form-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-form-wrap h3 i {
    color: #667eea;
    animation: none !important;
    transform: none !important;
}

/* Star Rating Selector */
.star-rating {
    display: flex;
    gap: 6px;
    padding: 10px 0;
}

.star-rating i {
    font-size: 26px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s;
    animation: none !important;
    transform: none !important;
}

.star-rating i:hover {
    transform: scale(1.2) !important;
}

/* Website link in review card */
.rev-website {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #667eea;
    text-decoration: none;
    margin-top: 2px;
}

.rev-website i {
    font-size: 10px;
    animation: none !important;
    transform: none !important;
}

.rev-website:hover {
    color: #764ba2;
}


/* Photo Upload */
.photo-upload {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.photo-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #d4e4fd);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    border: 3px solid #e0e0e0;
    transition: all 0.3s;
    flex-shrink: 0;
}

.photo-preview:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

.photo-preview i {
    font-size: 20px;
    color: #667eea;
    animation: none !important;
    transform: none !important;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-label {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.photo-label:hover {
    color: #764ba2;
}

/* Review Card Avatar Image */
.rev-avatar-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(102,126,234,0.2);
}


/* ===== WOW SCROLL REVEAL ===== */
.wow-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.wow-hidden.service-card,
.wow-hidden.about-card,
.wow-hidden.pf-card,
.wow-hidden.rev-card,
.wow-hidden.ci-card {
    transition-delay: var(--wow-delay, 0s);
}

.service-card:nth-child(1) { --wow-delay: 0s; }
.service-card:nth-child(2) { --wow-delay: 0.1s; }
.service-card:nth-child(3) { --wow-delay: 0.2s; }
.service-card:nth-child(4) { --wow-delay: 0.3s; }
.service-card:nth-child(5) { --wow-delay: 0.4s; }
.service-card:nth-child(6) { --wow-delay: 0.5s; }

.about-card:nth-child(1) { --wow-delay: 0s; }
.about-card:nth-child(2) { --wow-delay: 0.1s; }
.about-card:nth-child(3) { --wow-delay: 0.2s; }
.about-card:nth-child(4) { --wow-delay: 0.3s; }

.pf-card:nth-child(1) { --wow-delay: 0s; }
.pf-card:nth-child(2) { --wow-delay: 0.1s; }
.pf-card:nth-child(3) { --wow-delay: 0.15s; }
.pf-card:nth-child(4) { --wow-delay: 0.2s; }
.pf-card:nth-child(5) { --wow-delay: 0.25s; }
.pf-card:nth-child(6) { --wow-delay: 0.3s; }

.wow-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Navbar smooth transition */
.navbar {
    transition: all 0.3s ease;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Section divider lines */
.about, .services, .portfolio, .reviews-section, .contact {
    position: relative;
}

/* Tilt effect on cards */
.service-card:hover,
.about-card:hover,
.pf-card:hover,
.rev-card:hover {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Cursor glow on service cards */
.service-card::after,
.pf-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102,126,234,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-card:hover::after,
.pf-card:hover::after {
    opacity: 1;
}

/* Text gradient on hover for all card titles */
.pf-body h3,
.service-card h3,
.about-card h4 {
    transition: all 0.3s;
}

/* Floating particles effect on sections */
.services::after,
.portfolio::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236,72,153,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 12s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Premium selection color */
::selection {
    background: rgba(102,126,234,0.2);
    color: #1a1a2e;
}

/* Smooth image loading */
img {
    transition: opacity 0.3s;
}

/* Button press effect */
.service-btn:active,
.about-cta-btn:active,
.cf-submit:active,
.pf-btn:active {
    transform: scale(0.97) !important;
}


/* ===== TEAM SECTION ===== */
.team { padding: 60px 0; background: #fff; }
.team-container { max-width: 95%; margin: 0 auto; padding: 0 40px; }
.team-header { text-align: center; margin-bottom: 40px; }
.team-slider-wrap{overflow:hidden;margin:0 -10px}
.team-slider{display:flex;gap:24px;transition:transform 0.5s cubic-bezier(0.23,1,0.32,1);padding:10px}
.team-arrow{position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border-radius:50%;background:#fff;border:2px solid #e8e8e8;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:16px;color:#1a1a1a;transition:all 0.3s;z-index:5;box-shadow:0 4px 15px rgba(0,0,0,0.08)}
.team-arrow:hover{background:#e67e22;color:#fff;border-color:#e67e22;box-shadow:0 6px 20px rgba(230,126,34,0.3)}
.team-prev{left:-10px}
.team-next{right:-10px}
.tm-card { text-align: center; padding: 32px 24px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border: 1px solid rgba(0,0,0,0.04); border-radius: 24px; transition: all 0.4s; box-shadow: 0 2px 12px rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; min-width:calc(33.333% - 16px);max-width:calc(33.333% - 16px);flex-shrink:0 }
.tm-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #667eea, #764ba2, #ec4899); transform: scaleX(0); transition: transform 0.4s; }
.tm-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(102,126,234,0.15); }
.tm-card:hover::before { transform: scaleX(1); }
.tm-photo { width: 180px; height: 180px; border-radius: 50%; margin-bottom: 18px; overflow: hidden; border: 4px solid #e8e8e8; transition: all 0.4s; position: relative; }
.tm-card:hover .tm-photo { border-color: #667eea; transform: scale(1.05); box-shadow: 0 8px 25px rgba(102,126,234,0.2); }
.tm-photo img { width: 100%; height: 100%; object-fit: contain; margin: auto; }
.tm-letter { width: 100%; height: 100%; background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 50px; font-weight: 700; }
.tm-card h4 { font-size: 20px; font-weight: 800; color: #1a1a2e; margin-bottom: 4px; transition: all 0.3s; }
.tm-card:hover h4 { background: linear-gradient(135deg, #667eea, #764ba2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tm-role { font-size: 13px; color: #667eea; font-weight: 600; display: inline-block; padding: 3px 14px; background: #f0f2ff; border-radius: 20px; margin-bottom: 14px; }
.tm-desc { font-size: 13px; color: #888; line-height: 1.7; margin-bottom: 16px; padding: 0 8px; }
.tm-skills { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 18px; }
.tm-skill { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; background: #f8f9fc; border: 1px solid #eee; border-radius: 20px; font-size: 11px; font-weight: 600; color: #555; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); cursor: default; }
.tm-skill:hover { transform: scale(1.15) translateY(-4px); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.tm-skill:nth-child(1):hover { background: linear-gradient(135deg, #3b82f6, #06b6d4); box-shadow: 0 8px 20px rgba(59,130,246,0.3); }
.tm-skill:nth-child(2):hover { background: linear-gradient(135deg, #ec4899, #f59e0b); box-shadow: 0 8px 20px rgba(236,72,153,0.3); }
.tm-skill:nth-child(3):hover { background: linear-gradient(135deg, #10b981, #3b82f6); box-shadow: 0 8px 20px rgba(16,185,129,0.3); }
.tm-skill:nth-child(4):hover { background: linear-gradient(135deg, #8b5cf6, #ec4899); box-shadow: 0 8px 20px rgba(139,92,246,0.3); }
.tm-skill:hover i { color: #fff !important; }
.tm-skill i { font-size: 9px; color: #10b981; animation: none !important; transform: none !important; }
.tm-card:hover .tm-skill { background: #f0f2ff; border-color: rgba(102,126,234,0.2); color: #667eea; }
.tm-card:hover .tm-skill i { color: #667eea; }
.tm-socials { display: flex; justify-content: center; gap: 8px; margin-bottom: 14px; }
.tm-socials a { width: 36px; height: 36px; border-radius: 50%; background: #f0f2ff; color: #667eea; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 15px; transition: all 0.3s; }
.tm-socials a i { animation: none !important; transform: none !important; }
.tm-socials a:hover { transform: translateY(-3px) scale(1.1); color: #fff; }
.tm-socials a[title="LinkedIn"]:hover { background: #0077b5; box-shadow: 0 4px 15px rgba(0,119,181,0.35); }
.tm-socials a[title="Twitter"]:hover { background: #1da1f2; box-shadow: 0 4px 15px rgba(29,161,242,0.35); }
.tm-socials a[title="Email"]:hover { background: linear-gradient(135deg, #ea4335, #fbbc05); box-shadow: 0 4px 15px rgba(234,67,53,0.35); }
.tm-connect-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding: 11px 30px; background: #25d366; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 50px; transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 0 4px 15px rgba(37,211,102,0.3); position: relative; overflow: hidden; }
.tm-connect-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); opacity: 0; transition: opacity 0.3s; }
.tm-connect-btn:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.45); }
.tm-connect-btn:hover::before { opacity: 1; }
.tm-connect-btn i { font-size: 16px; }
@media (max-width: 992px) { .tm-card{min-width:calc(50% - 12px);max-width:calc(50% - 12px)} }
@media (max-width: 768px) { .tm-card{min-width:calc(100% - 12px);max-width:calc(100% - 12px)} .team-prev{left:5px}.team-next{right:5px} }


/* ===== COMMITMENT SECTION (shared) ===== */
.cmt-section{position:relative;overflow:hidden;background:linear-gradient(180deg,#f0f4ff 0%,#fff 30%,#f8f4ff 60%,#eef1fa 100%)}
.cmt-hero{padding:60px 0 40px}
.cmt-hero-container{max-width:95%;margin:0 auto;padding:0 30px;display:flex;align-items:center;gap:40px}
.cmt-hero-left{flex:1}
.cmt-pre{font-family:'Montserrat',sans-serif;font-size:28px;font-weight:800;color:#1a1a2e;line-height:1;margin-bottom:0}
.cmt-title{font-family:'Montserrat',sans-serif;font-size:48px;font-weight:800;line-height:1;margin-bottom:8px;background:linear-gradient(90deg,#3b82f6,#667eea,#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.cmt-title-line{width:80px;height:5px;background:linear-gradient(90deg,#3b82f6,#667eea);border-radius:3px;margin-bottom:20px}
.cmt-tagline{font-size:22px;font-weight:700;color:#1a1a2e;line-height:1.4;margin-bottom:16px}
.cmt-desc{font-size:15px;color:#555;line-height:1.8;max-width:480px}
.cmt-hero-right{flex:1;position:relative;display:flex;justify-content:center}
.cmt-hero-img{width:100%;max-width:440px;border-radius:0 80px 0 0;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,0.1)}
.cmt-hero-img img{width:100%;height:340px;object-fit:cover;display:block}
.cmt-hero-placeholder{width:100%;height:340px;background:linear-gradient(135deg,#667eea,#764ba2);display:flex;align-items:center;justify-content:center;font-size:80px;color:rgba(255,255,255,0.3)}
.cmt-hero-float{position:absolute;right:-10px;bottom:40%;width:65px;height:65px;border-radius:50%;background:linear-gradient(135deg,#667eea,#764ba2);display:flex;align-items:center;justify-content:center;font-size:30px;color:#fff;box-shadow:0 8px 25px rgba(102,126,234,0.4);animation:floatBadge 3s ease-in-out infinite}
.cmt-hero-float i{animation:none!important;transform:none!important}
@keyframes floatBadge{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.cmt-cards-section{padding:10px 0 40px}
.cmt-cards-container{max-width:95%;margin:0 auto;padding:0 30px}
.cmt-badge-center{text-align:center;margin-bottom:30px}
.cmt-badge-center span{display:inline-block;background:linear-gradient(135deg,#10b981,#059669);color:#fff;padding:10px 32px;border-radius:40px;font-size:13px;font-weight:800;letter-spacing:3px}
.cmt-cards-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:18px}
.cmt-card{text-align:center;padding:24px 14px 20px;background:#fff;border-radius:16px;border:1px solid #eee;transition:all 0.4s cubic-bezier(0.23,1,0.32,1);box-shadow:0 2px 12px rgba(0,0,0,0.04)}
.cmt-card:hover{transform:translateY(-8px);box-shadow:0 16px 40px rgba(0,0,0,0.1);border-color:transparent}
.cmt-card-icon{width:72px;height:72px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:30px;margin:0 auto 14px;color:#fff;transition:transform 0.4s}
.cmt-card:hover .cmt-card-icon{transform:scale(1.12) rotate(-6deg)}
.cmt-card-icon i{animation:none!important;transform:none!important}
.cmt-card-title{font-size:12px;font-weight:800;letter-spacing:0.5px;margin-bottom:8px;line-height:1.4}
.cmt-card p{font-size:12px;color:#777;line-height:1.6;margin-bottom:14px}
.cmt-card-line{width:35px;height:3px;border-radius:3px;margin:0 auto}
.cmt-bottom-quote{padding:30px 0 20px}
.cmt-bq-container{max-width:800px;margin:0 auto;text-align:center;padding:0 30px}
.cmt-bq-text{font-size:18px;font-weight:700;color:#1a1a2e;margin-bottom:4px}
.cmt-bq-highlight{display:flex;align-items:center;justify-content:center;gap:14px}
.cmt-bq-highlight p{font-size:22px;font-weight:800;font-style:italic;background:linear-gradient(90deg,#3b82f6,#8b5cf6,#c0247a);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin:0}
.cmt-bq-line{width:50px;height:3px;background:linear-gradient(90deg,#3b82f6,#8b5cf6);border-radius:3px;flex-shrink:0}
.cmt-bottom-bar{padding:20px 0 0}
.cmt-bar-container{max-width:95%;margin:0 auto;padding:0 30px;display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-radius:16px;overflow:hidden}
.cmt-bar-item{display:flex;align-items:center;gap:14px;padding:24px 20px;color:#fff}
.cmt-bar-icon{width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.cmt-bar-icon i{animation:none!important;transform:none!important}
.cmt-bar-text h5{font-size:13px;font-weight:800;letter-spacing:0.5px;margin-bottom:2px}
.cmt-bar-text p{font-size:12px;opacity:0.85;line-height:1.4;margin:0}
@media(max-width:992px){.cmt-hero-container{flex-direction:column;text-align:center}.cmt-desc{max-width:100%}.cmt-title-line{margin:0 auto 20px}.cmt-cards-grid{grid-template-columns:repeat(3,1fr)}.cmt-bar-container{grid-template-columns:repeat(2,1fr)}.cmt-hero-float{right:10px}}
@media(max-width:768px){.cmt-hero{padding:40px 0 30px}.cmt-title{font-size:40px}.cmt-pre{font-size:24px}.cmt-tagline{font-size:18px}.cmt-hero-img img,.cmt-hero-placeholder{height:260px}.cmt-hero-float{display:none}.cmt-cards-grid{grid-template-columns:repeat(2,1fr);gap:14px}.cmt-bq-text{font-size:16px}.cmt-bq-highlight p{font-size:18px}.cmt-bq-highlight{flex-direction:column;gap:8px}.cmt-bar-container{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.cmt-title{font-size:32px}.cmt-cards-grid{grid-template-columns:1fr}.cmt-bar-container{grid-template-columns:1fr;border-radius:12px}}
.cmt-cards-vision{grid-template-columns:repeat(5,1fr)}
@media(max-width:992px){.cmt-cards-vision{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.cmt-cards-vision{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.cmt-cards-vision{grid-template-columns:1fr}}


/* ===== FINAL MOBILE OVERRIDE - Full Width Like Hero ===== */
@media (max-width: 768px) {
    .hero-container,
    .about-container,
    .services-container,
    .pricing-container,
    .portfolio-container,
    .contact-container,
    .reviews-container,
    .team-container,
    .stats-container,
    .footer-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .nav-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .services-grid,
    .pricing-grid,
    .portfolio-grid,
    .about-right {
        gap: 12px !important;
    }
    .service-card,
    .pr-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }
    .about-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }
    .pf-card {
        border-radius: 14px !important;
    }
    .pf-body {
        padding: 16px !important;
    }
    .contact-form-wrap {
        padding: 20px 14px !important;
        border-radius: 14px !important;
    }
    .ci-card {
        padding: 16px !important;
        border-radius: 14px !important;
    }
    .services-cta {
        padding: 30px 16px !important;
        border-radius: 14px !important;
    }
    .cmt-hero-container,
    .cmt-cards-container,
    .cmt-bq-container,
    .cmt-bar-container {
        max-width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}


/* ===== SERVICE CARDS OVERFLOW FIX ===== */
@media (max-width: 768px) {
    .services-grid {
        overflow: hidden !important;
        padding: 0 !important;
    }
    .service-card {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .service-features li {
        font-size: 12px !important;
    }
    .service-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    /* Appointment button full width */
    .ci-appt-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
        margin-top: 10px !important;
        display: flex !important;
    }
    /* Newsletter send button visible */
    .ft-nl-form {
        display: flex !important;
        overflow: hidden !important;
    }
    .ft-nl-form button {
        min-width: 46px !important;
        width: 46px !important;
        height: 42px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        font-size: 16px !important;
    }
    .ft-nl-form input {
        min-width: 0 !important;
        flex: 1 !important;
    }
}


/* Appointment button single line */
@media (max-width: 768px) {
    .ci-appt-btn {
        white-space: nowrap !important;
        font-size: 12px !important;
    }
}
