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

:root {
    --primary-bg: #E5EBF9;
    --secondary-bg: #DCE4F5;
    --accent-color: #072F77;
    --accent-hover: #0a3a8f;
    --text-main: #0B1E43;
    --text-dim: #54668D;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(7, 47, 119, 0.1);
    --card-shadow: 0 10px 30px rgba(7, 47, 119, 0.05);
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

/* Premium Navbar */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
    /* Reduced from 1.2rem */
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.6rem 0;
    }
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-width: 200px;
    /* Bolder presence using width */
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-width: 140px;
        /* Proportionally larger on mobile too */
    }
}

.nav-link {
    color: var(--text-dim) !important;
    font-weight: 600;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

/* Dropdown Menu Premium Styles */
.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(7, 47, 119, 0.08);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
}

.navbar .dropdown-item {
    color: var(--text-dim) !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: var(--accent-color) !important;
    background-color: var(--secondary-bg);
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background-color: var(--accent-color);
    color: #fff !important;
}

/* Hover dropdown behavior on larger screens */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

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

@media (max-width: 991px) {
    .nav-link {
        margin-left: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .navbar-collapse {
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    }

    .navbar .dropdown-menu {
        position: static;
        float: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        margin-top: 0;
        animation: none;
    }

    .navbar .dropdown-item {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

.btn-premium {
    background: var(--accent-color);
    color: white !important;
    border-radius: 12px;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.2);
}

.btn-premium:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

/* Sections */
.section-padding {
    padding: 50px 0;
}

/* Premium Cards */
.glass-card {
    background: var(--primary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
}

.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.hero-section {
    background-color: var(--primary-bg);
}

/* Hero Section Enhancements */
.hero-content p:first-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.hero-title-main {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    /* Increased size and improved scaling */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-red-highlight {
    color: var(--accent-color);
    /* Strictly #072F77 */
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: block;
}

.hero-content p:last-of-type {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 650px;
}

.btn-hero {
    background: var(--accent-color);
    /* Strictly #072F77 */
    color: white !important;
    padding: 1.2rem 3rem;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    /* Slightly more rectangular as per latest image */
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(7, 47, 119, 0.2);
}

.btn-hero:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(7, 47, 119, 0.3);
}

@media (max-width: 991px) {
    .hero-image-wrapper {
        margin-top: 50px;
        text-align: center;
    }
}

/* Floating Cards Layout */
.social-preview-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-1 {
    width: 220px;
    top: 10%;
    right: 10%;
    transform: rotate(5deg);
    z-index: 3;
}

.card-2 {
    width: 180px;
    bottom: 10%;
    left: 10%;
    transform: rotate(-5deg);
    z-index: 2;
}

.card-3 {
    width: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.icon-fb {
    top: 15%;
    left: 20%;
    background: #1877F2;
}

.icon-msg {
    top: 25%;
    right: 5%;
    background: #0084FF;
}

.icon-wa {
    bottom: 30%;
    right: 15%;
    background: #25D366;
}

.icon-ig {
    bottom: 15%;
    left: 25%;
    background: #E4405F;
}

/* Existing Gradients */
.text-gradient {
    background: linear-gradient(135deg, #072F77 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stats */
.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

/* Footer */
footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--glass-border);
    padding: 100px 0 50px;
}

.footer-link {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.brand-logo {
    padding: 10px 20px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    /* Smooth continuous scroll */
}

/* Soft-Minimalist Impact Section */
.stats-section {
    padding: 50px 0;
    position: relative;
    background: #fff;
}

.stat-badge {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 240px;
    background: #fff;
    border-radius: 24px;
    /* Modern rounded square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(7, 47, 119, 0.05);
    border: 2px solid rgba(7, 47, 119, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px;
    position: relative;
    z-index: 1;
}

.stat-badge:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(7, 47, 119, 0.12);
    border-color: var(--accent-color);
    background: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.stat-badge p {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .stat-badge {
        width: 160px;
        height: 160px;
        padding: 20px;
        margin-bottom: 20px;
    }

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

    .stat-badge p {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .stat-badge {
        width: 140px;
        height: 140px;
    }

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

/* Premium CTA Button (Swiss Style) */
.btn-premium-outline {
    background-color: var(--accent-color);
    /* Brand Navy */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border: 2px solid #fff;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 0 0 2px var(--accent-color);
    /* Double border effect from image */
}

.btn-premium-outline:hover {
    background-color: #fff;
    color: var(--accent-color);
    box-shadow: 0 0 0 2px #fff;
    border-color: var(--accent-color);
}

/* Staggered Masonry Portfolio Section */
.portfolio-section {
    padding: 50px 0;
    /* User updated this */
    background: var(--primary-bg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.portfolio-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(7, 47, 119, 0.03);
    -webkit-text-stroke: 1px rgba(7, 47, 119, 0.05);
    /* Outline effect */
    text-transform: uppercase;
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
}

.portfolio-column-track {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.portfolio-column-staggered {
    margin-top: 100px;
    /* The stagger effect */
}

.portfolio-card {
    text-decoration: none;
    display: block;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-img-wrapper {
    width: 80%;
    /* Adjusted for a more refined, smaller look */
    overflow: hidden;
    position: relative;
    border-radius: 0;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Gallery - Ultimate Portfolio UI */
.gallery-card {
    display: block;
    position: relative;
    text-decoration: none !important;
    overflow: hidden;
    border-radius: 40px;
    background: #000;
}

.gallery-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-card-lg .gallery-img-wrapper {
    aspect-ratio: 16 / 9;
}

.gallery-card-sm .gallery-img-wrapper {
    aspect-ratio: 4 / 5;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.85;
}

.gallery-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-details {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
}

.gallery-card-sm .gallery-title {
    font-size: 1.8rem;
}

@media (max-width: 991px) {
    .gallery-card {
        border-radius: 30px;
    }

    .gallery-details {
        padding: 25px;
        opacity: 1;
        transform: none;
    }

    .gallery-title {
        font-size: 1.5rem !important;
    }
}

.portfolio-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    /* Squarer images feel smaller */
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.portfolio-info {
    padding-left: 5%;
}

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #e63946;
    /* Brand Red accent */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.portfolio-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 6vw, 3.5rem);
    /* Responsive title size */
    color: var(--accent-color);
    line-height: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

/* Premium Theme Button Variant (for Portfolio) */
.btn-premium-work {
    background-color: var(--accent-color);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border: 2px solid #fff;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.btn-premium-work:hover {
    background-color: #fff;
    color: var(--accent-color);
    box-shadow: 0 0 0 2px #fff;
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .portfolio-column-staggered {
        margin-top: 0;
    }

    .portfolio-column-track {
        gap: 40px;
    }

    .portfolio-title {
        font-size: 2.2rem;
    }
}

/* Unique CTA Section */
.cta-unique-section {
    background-color: var(--primary-bg);
    padding: 50px 0;
    overflow: hidden;
}

.cta-big-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -5px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-col {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .cta-big-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        letter-spacing: -2px;
    }

    .contact-col {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.contact-details p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.rotating-text-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-circle {
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circle-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    fill: var(--text-main);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.cta-brand-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.cta-brand-footer h3 {
    font-size: 2.5rem;
    letter-spacing: -2px;
}

.cta-social-grid {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .cta-social-grid {
        justify-content: center;
    }
}

.social-box {
    width: 60px;
    height: 60px;
    background: #2D2D2D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-box:hover {
    background: var(--accent-color);
    transform: translateY(-5px) rotate(5deg);
    color: white;
}

/* Unique Artistic Dark Footer */
.artistic-footer-dark {
    background-color: var(--accent-color);
    /* Deep Navy #072F77 */
    color: white;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-art-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    font-family: 'Montserrat', sans-serif;
}

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

/* .art-footer-logo-wrapper {
    margin-bottom: 30px;
} */

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .art-footer-logo-wrapper {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo-img {
        max-width: 150px;
    }
}

.art-footer-content-col p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    margin-top: 1.5rem;
}

.meta-badge-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.art-acknowledgment {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
    padding-top: 40px;
}

.art-acknowledgment p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    max-width: 900px;
}

.art-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: 20px;
}

.art-footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
}

.art-legal-links {
    display: flex;
    gap: 30px;
}

.art-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.art-legal-links a:hover {
    color: white;
}

@media (max-width: 991px) {
    .art-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .art-legal-links {
        justify-content: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 28px;
    }
}

.agency-footer-statement,
.footer-meta-badge-wrapper,
.acknowledgment-statement-box,
.acknowledgment-statement-text,
.footer-bottom-bar,
.copyright-text,
.footer-legal-links,
.acknowledgment-card {
    display: none;
}

/* Utilities */
.bg-light-soft {
    background-color: var(--secondary-bg);
}

.opacity-30 {
    opacity: 0.3;
}

/* Luxury Pricing UI - LIGHT THEME */
.pricing-page-light {
    background-color: #fdfdfe;
    color: #051633;
}

.pricing-card-luxury {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 60px 40px;
    height: 100%;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(7, 47, 119, 0.05);
}

.pricing-card-luxury:hover {
    transform: translateY(-20px);
    border-color: rgba(7, 47, 119, 0.2);
    box-shadow: 0 40px 80px rgba(7, 47, 119, 0.12);
}

.pricing-card-luxury.featured {
    border: 2px solid #3a86ff;
    box-shadow: 0 25px 60px rgba(58, 134, 255, 0.15);
}

.pricing-card-luxury.featured:hover {
    transform: translateY(-20px);
}

.pricing-card-luxury.gold {
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.pricing-card-luxury.gold:hover {
    border-color: #ffc107;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3a86ff;
    color: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

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

.plan-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #3a86ff;
    margin-bottom: 10px;
    display: block;
}

.gold .plan-tag {
    color: #d4a017;
}

/* Sophisticated gold for light bg */

.plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    /* Responsive plan name */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
    color: #051633;
}

.plan-price {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    /* Responsive price */
    font-weight: 900;
    color: #051633;
}

.plan-price span {
    font-size: 1.2rem;
    opacity: 0.4;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #495057;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f3f5;
}

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

.plan-features li.check::before {
    content: '✓';
    color: #3a86ff;
    margin-right: 20px;
    font-weight: 900;
    font-size: 1.4rem;
}

.plan-features li.plus::before {
    content: '+';
    color: #d4a017;
    margin-right: 20px;
    font-weight: 900;
    font-size: 1.4rem;
}

.plan-features li.cross::before {
    content: '✕';
    color: #e63946;
    margin-right: 20px;
    font-weight: 900;
    font-size: 1.4rem;
}

.pricing-footer {
    text-align: center;
}

.btn-luxury {
    background: #3a86ff;
    color: #fff;
    padding: 18px 45px;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-luxury:hover {
    background: #051633;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

.btn-luxury-outline {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #051633;
    padding: 16px 45px;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
    border-color: #051633;
    background: #051633;
    color: #fff;
}

@media (max-width: 991px) {
    .pricing-card-luxury.featured {
        transform: none;
        margin-bottom: 40px;
    }
}

.work-page-dark h1.display-1 {
    font-size: clamp(3rem, 12vw, 8rem);
    /* Responsive fluid scaling */
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
}

.pricing-page-light h1.display-2 {
    font-size: clamp(2.5rem, 10vw, 6.5rem);
    /* Responsive fluid scaling */
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
}

/* ================================================================
   CAPABILITIES PAGE — UNIQUE REDESIGN
   ================================================================ */

/* ================================================================
   PROPER SINGLE-SECTION SHOWCASE
   ================================================================ */

.cap-showcase-proper {
    background: #f4f7ff;
    color: #051633;
    padding: 30px 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

/* Background Typography Removed as per user request */

.cap-hero-aura {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translateY(-50%);
}

.showcase-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.showcase-sticky {
    flex: 1;
    position: sticky;
    /* top: 60px; */
    top: 12px;

    height: fit-content;
}

.showcase-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #3a86ff;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.showcase-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 0.8;
    color: #051633;
    letter-spacing: -2px;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.showcase-title span {
    display: block;
    font-size: 48px;
    letter-spacing: -1px;
}

.showcase-title .text-blue {
    color: #3a86ff;
    font-size: 95px;
    letter-spacing: -3px;
    margin: 5px 0;
}

.showcase-desc {
    font-size: 1.15rem;
    font-weight: 700;
    color: #051633;
    max-width: 320px;
    line-height: 1.4;
}

.showcase-scroll {
    flex: 1.25;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}

.boutique-point-proper {
    padding: 0;
    position: relative;
}

.point-statement-list {
    list-style: none;
    padding: 0 0 30px;
    margin: 0;
    text-align: start;
    border-top: 1px solid rgba(7, 47, 119, 0.06);
    border-bottom: 1px solid rgba(7, 47, 119, 0.06);
}

.point-statement-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: #051633;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 0 0 12px;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.point-statement-list li:hover {
    transform: translateX(15px);
    color: #3a86ff;
}

.point-statement-list li::before {
    content: "➜";
    color: #3a86ff;
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.4;
    -webkit-text-stroke: 1px #3a86ff;
    transition: transform 0.4s ease;
}

.point-statement-list li:hover::before {
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .showcase-layout {
        flex-direction: column;
        gap: 40px;
    }

    .showcase-sticky {
        position: static;
        text-align: left;
    }

    .showcase-title {
        margin-bottom: 30px;
    }

    .showcase-title span {
        font-size: 32px;
    }

    .showcase-title .text-blue {
        font-size: 60px;
    }

    .showcase-desc {
        max-width: 100%;
        border-left: 3px solid #3a86ff;
        padding-left: 20px;
    }

    .point-statement-list {
        padding: 60px 0;
        text-align: left;
    }

    .point-statement-list li {
        font-size: 0.75rem;
        gap: 10px;
        line-height: 1.6;
    }

    .point-statement-list li::before {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .cap-showcase-proper {
        padding: 60px 0;
    }

    .showcase-title span {
        font-size: 26px;
    }

    .showcase-title .text-blue {
        font-size: 48px;
    }

    .point-statement-list li {
        font-size: 0.7rem;
    }
}

/* --- WHAT WE DO Grid Section --- */
.what-we-do-proper {
    background: var(--primary-bg);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(7, 47, 119, 0.06);
    overflow: hidden;
}

/* Background Aura Animation */
.wwd-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: auraFloat 20s infinite alternate ease-in-out;
}

@keyframes auraFloat {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-45%, -55%) scale(1.1);
    }
}

.wwd-header-proper {
    text-align: left;
    margin-bottom: 60px;
}

.wwd-title-proper {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wwd-title-proper .text-top {
    font-size: 48px;
    color: #051633;
    letter-spacing: -1px;
}

.wwd-title-proper .text-bottom {
    font-size: 95px;
    color: #3a86ff;
    letter-spacing: -3px;
    margin-top: 5px;
}

.wwd-grid-proper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wwd-card-proper {
    background: #E5EBF9;
    border: 1px solid rgba(7, 47, 119, 0.08);
    border-radius: 4px;
    padding: 70px 45px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(5, 22, 51, 0.03);
    z-index: 1;
}

/* Card Number Background */
.wwd-card-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: rgba(5, 22, 51, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s ease;
}

.wwd-card-proper:hover .wwd-card-number {
    color: #3a86ff;
    transform: scale(1.1) translateY(10px);
    opacity: 0.15;
}

/* Vertical Accent */
.wwd-card-proper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: #3a86ff;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-50%);
    opacity: 0;
}

.wwd-card-proper:hover::after {
    height: 40px;
    opacity: 1;
}

.wwd-card-proper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.wwd-card-proper:hover {
    border-color: rgba(58, 134, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(5, 22, 51, 0.08);
}

.wwd-card-proper:hover::before {
    opacity: 1;
}

.wwd-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(58, 134, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: all 0.5s ease;
    position: relative;
}

.wwd-card-proper:hover .wwd-icon-box {
    background: #3a86ff;
    transform: rotate(10deg);
}

.wwd-icon-proper {
    font-size: 2.2rem;
    color: #3a86ff;
    transition: all 0.5s ease;
}

.wwd-card-proper:hover .wwd-icon-proper {
    color: #ffffff;
    transform: scale(1.1) rotate(-10deg);
}

.wwd-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #051633;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.wwd-card-proper p {
    font-size: 0.95rem;
    color: #54668D;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 500;
}

.wwd-list-label {
    font-size: 0.7rem;
    font-weight: 900;
    color: #3a86ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wwd-list-label::after {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(58, 134, 255, 0.2);
}

.wwd-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.wwd-card-list li {
    font-size: 0.82rem;
    color: #051633;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
    transition: transform 0.3s ease;
}

.wwd-card-list li:hover {
    transform: translateX(5px);
    color: #3a86ff;
}

.wwd-card-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3a86ff;
    font-weight: 900;
    font-size: 0.9rem;
}

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

@media (max-width: 767px) {
    .what-we-do-proper {
        padding: 60px 0;
    }

    /* Slightly tighter padding */
    .wwd-grid-proper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .wwd-card-proper {
        padding: 40px 25px;
    }

    .wwd-title-proper .text-top {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: 0;
    }

    .wwd-title-proper .text-bottom {
        font-size: clamp(3rem, 12vw, 5rem);
        letter-spacing: -1px;
        margin-top: 0;
    }

    .wwd-card-number {
        font-size: 5rem;
        top: -5px;
        right: -5px;
    }
}

/* --- CLIENT SHOWCASE SECTION --- */
.client-showcase {
    background: var(--primary-bg);
    /* Light Boutique Theme */
    padding: 50px 0;
    color: var(--text-main);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.client-header {
    margin-bottom: 80px;
}

.client-subtitle {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 5px;
    display: block;
    margin-bottom: 10px;
}

/* Editorial Layout */
.client-editorial-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.client-editorial-left {
    flex: 1.2;
    text-align: left;
}

.client-editorial-right {
    flex: 1;
    text-align: left;
}

.client-main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align for editorial */
}

.client-main-title span {
    display: block;
}

.client-main-title .text-who {
    font-size: 1.2rem;
    color: var(--text-main);
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 15px;
}

.client-main-title .text-blue {
    font-size: clamp(3rem, 10vw, 7rem);
    color: #3a86ff;
    /* Brand Blue Highlight */
    letter-spacing: -4px;
}

.client-main-title .text-dark {
    font-size: clamp(2rem, 7vw, 4rem);
    color: var(--text-main);
    letter-spacing: -2px;
    margin-top: 0;
}

.client-editorial-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-editorial-list li {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.client-editorial-list li i {
    color: #3a86ff;
    font-size: 1.8rem;
    margin-right: 15px;
    flex-shrink: 0;
}



/* Logo Grid */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
    margin-top: 80px;
}

.client-logo-item {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    background: #fff;
    /* White cards in light theme */
}

.client-logo-item:hover {
    background: var(--secondary-bg);
}

.logo-mono {
    filter: grayscale(100%);
    opacity: 0.6;
    max-width: 50px;
    margin-bottom: 15px;
}

/* Placeholder Logo Styles */
.logo-text,
.logo-text-large,
.logo-text-cursive,
.logo-text-bold,
.logo-text-modern,
.logo-text-elegant,
.logo-text-funky,
.logo-text-spaced,
.logo-text-serif,
.logo-text-small {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    pointer-events: none;
    line-height: 1.1;
}

.logo-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: lowercase;
}

.logo-text small {
    font-size: 0.5rem;
    font-weight: 400;
    opacity: 0.7;
}

.logo-text-large {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-text-cursive {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.9;
}

.logo-text-bold {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-text-modern {
    font-weight: 300;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.logo-text-elegant {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 3px;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 3px;
}

.logo-text-funky {
    font-size: 1.4rem;
    font-weight: 900;
    color: #3a86ff;
}

.logo-text-spaced {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 12px;
    padding-left: 12px;
}

.logo-text-circle {
    width: 30px;
    height: 30px;
    border: 1px solid var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.logo-text-small {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text-serif {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-text-serif small {
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .client-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .client-editorial-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .client-editorial-left,
    .client-editorial-right {
        text-align: center;
    }

    .client-main-title {
        align-items: center;
    }

    .client-editorial-list li {
        justify-content: center;
        text-align: center;
    }

    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .client-logo-item {
        height: 150px;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .client-showcase {
        padding: 80px 0;
    }

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

    .client-main-title .text-red {
        font-size: 3.5rem;
    }

    .client-main-title .text-ivory {
        font-size: 3rem;
    }

    .work-page-dark .row.g-5 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
}

@media (max-width: 480px) {
    .client-logo-grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .client-logo-item {
        border-right: none;
    }
}

/* --- ABOUT PAGE STYLES --- */
.about-hero {
    background: var(--primary-bg);
    /* Light Boutique Theme */
    padding: 100px 0;
    color: var(--text-main);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.about-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.about-main-title span {
    display: block;
}

.about-main-title .text-dark {
    font-size: clamp(3rem, 12vw, 8rem);
    color: var(--text-main);
    letter-spacing: -2px;
}

.about-main-title .text-blue {
    font-size: clamp(5rem, 20vw, 15rem);
    color: #3a86ff;
    letter-spacing: -8px;
    margin: -10px 0;
}

.about-narrative {
    max-width: 800px;
    margin: 60px auto 100px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.about-narrative p {
    margin-bottom: 30px;
}

.about-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.rotating-badge {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateBadge 15s linear infinite;
}

.badge-text {
    fill: var(--text-main);
}

.badge-arrow {
    position: absolute;
    font-size: 3rem;
    color: #3a86ff;
    transform: rotate(-10deg);
    -webkit-text-stroke: 1.5px #3a86ff;
    /* Make icon bolder */
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

    .about-main-title {
        margin-bottom: 30px;
    }

    .about-main-title .text-dark {
        font-size: clamp(2.5rem, 10vw, 5rem);
        letter-spacing: -1px;
    }

    .about-main-title .text-blue {
        font-size: clamp(4rem, 18vw, 9rem);
        letter-spacing: -3px;
        margin: 0;
    }

    .about-narrative {
        font-size: 0.9rem;
        padding: 0 15px;
        margin: 40px auto;
        letter-spacing: 1px;
    }

    .about-narrative p {
        margin-bottom: 20px;
    }

    .rotating-badge {
        width: 150px;
        height: 150px;
        margin-top: 30px;
    }

    .badge-arrow {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-main-title .text-blue {
        font-size: clamp(3.5rem, 20vw, 6rem);
    }

    .about-narrative {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .rotating-badge {
        width: 130px;
        height: 130px;
    }
}

/* --- SIMPLIFIED NEWSLETTER SECTION (WORK PAGE) --- */
.newsletter-section {
    background: var(--text-main);
    /* Deep Navy */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.newsletter-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form-simple {
    display: flex;
    gap: 15px;
}

.newsletter-input-simple {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 18px 25px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    outline: none;
}

.newsletter-input-simple::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-newsletter-simple {
    background: #3a86ff;
    /* Brand Blue */
    color: #fff;
    border: none;
    padding: 0 40px;
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-newsletter-simple:hover {
    background: #fff;
    color: var(--text-main);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-form-simple {
        flex-direction: column;
    }

    .btn-newsletter-simple {
        padding: 18px;
    }

}

/* --- CONTACT PAGE SPECIFIC OVERRIDES --- */
.contact-hero-section .about-main-title .text-dark {
    font-size: clamp(2.5rem, 10vw, 6.5rem);
}

.contact-hero-section .about-main-title .text-blue {
    font-size: clamp(4.5rem, 18vw, 13rem);
}

/* --- CONTACT PAGE — SPLIT CARD DESIGN --- */
.contact-hero-section {
    padding-bottom: 100px;
}

/* Split Card Container */
.contact-split-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 550px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 50px 100px rgba(7, 47, 119, 0.12);
}

/* Left: Info Panel */
.contact-info-panel {
    background: var(--accent-color);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cip-bg-text {
    position: absolute;
    bottom: -60px;
    right: -20px;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.cip-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure left alignment */
    text-align: left;
    /* Ensure left alignment */
}

.cip-tag {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    display: block;
}

.cip-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 0.85;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.cip-heading span {
    color: #3a86ff;
}

.cip-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 40px;
}

.cip-details {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.cip-details li {
    display: flex;
    align-items: center;
    /* Better for single-line alignment */
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Adjust for multi-line address icon to stay at top of first line */
.cip-details li i.bi-geo-alt-fill {
    align-self: flex-start;
    margin-top: 4px;
}

.cip-details li i {
    color: #3a86ff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cip-socials {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.cip-social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cip-social-link:hover {
    background: #3a86ff;
    border-color: #3a86ff;
    color: #fff;
}

/* Right: Form Panel */
.contact-form-panel {
    background: #fff;
    padding: 3.5rem 3rem;
}

.contact-form-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #3a86ff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-form-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(7, 47, 119, 0.1);
}

/* Underline inputs — no hover, no box shadow */
.custom-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid rgba(7, 47, 119, 0.1) !important;
    border-radius: 0 !important;
    padding: 0.75rem 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    transition: border-color 0.3s ease !important;
    color: var(--text-main) !important;
    box-shadow: none !important;
    outline: none !important;
}

.custom-input:focus {
    border-bottom-color: #3a86ff !important;
    box-shadow: none !important;
    background: transparent !important;
}

.custom-input::placeholder {
    color: rgba(7, 47, 119, 0.25);
    font-weight: 400;
}

textarea.custom-input {
    min-height: 110px;
    resize: none;
}

.form-label {
    display: block !important;
    text-align: left !important;
    font-size: 0.65rem !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
    color: var(--text-dim) !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
}

/* Submit button */
.btn-contact-send {
    background: var(--accent-color);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    padding: 18px 50px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn-contact-send::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-contact-send:hover {
    background: #3a86ff;
}

.btn-contact-send:hover::after {
    transform: translateX(5px);
}

/* Mobile: stack vertically */
@media (max-width: 991px) {
    .contact-split-card {
        grid-template-columns: 1fr;
        box-shadow: 0 30px 60px rgba(7, 47, 119, 0.08);
        /* Softer shadow for mobile */
    }

    .contact-info-panel {
        padding: 3rem 2rem;
        min-height: auto;
    }

    .cip-bg-text {
        font-size: 10rem;
    }

    .cip-heading {
        font-size: 2.5rem;
    }

    .contact-form-panel {
        padding: 3rem 2rem;
    }

    .btn-contact-send {
        width: 100%;
        border-radius: 4px;
    }

    /* Added slight radius for mobile feel */
}

/* ================================================================
   BLOG PAGE — EDITORIAL LISTING
   ================================================================ */

.blog-hero {
    background: var(--primary-bg);
    padding: 100px 0 60px;
    border-bottom: 1px solid var(--glass-border);
}

.blog-main-title {
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.blog-featured-section {
    padding: 80px 0;
}

.featured-blog-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(7, 47, 119, 0.08);
    display: flex;
    flex-wrap: wrap;
    transition: all 0.5s ease;
}

.featured-blog-img-wrapper {
    flex: 1.5;
    min-width: 300px;
    overflow: hidden;
}

.featured-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.featured-blog-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.blog-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(7, 47, 119, 0.03);
    border: 1px solid rgba(7, 47, 119, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(7, 47, 119, 0.1);
}

.blog-card-img-wrapper {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

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

.blog-card-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3a86ff;
    margin-bottom: 20px;
    display: inline-block;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--accent-color);
}

.featured-blog-content .blog-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.blog-card-body p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-blog-read {
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-blog-read::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-blog-read:hover::after {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .featured-blog-content {
        padding: 40px;
    }

    .blog-main-title {
        letter-spacing: -2px;
    }
}

.blog-hero p {
    font-size: 1.25rem;
    opacity: 0.75;
    margin-top: 15px;
}

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

    .featured-blog-img-wrapper {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .blog-card-body {
        padding: 30px;
    }
}

/* --- Blog List Layout Styles --- */

.blog-list-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 50px;
    display: flex;
    gap: 40px;
    transition: all 0.4s ease;
    border: 1px solid rgba(7, 47, 119, 0.05);
}

.blog-list-img-wrapper {
    flex: 0 0 350px;
    height: 250px;
    overflow: hidden;
}

.blog-list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-list-content {
    flex: 1;
    padding: 30px 40px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-meta span.text-primary {
    background: rgba(58, 134, 255, 0.1);
    color: #3a86ff !important;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 10px;
    letter-spacing: 1px;
}

.blog-meta span:not(.text-primary) {
    opacity: 0.8;
}



.blog-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(7, 47, 119, 0.05);
}

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

/* Pagination */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.page-link-custom {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.page-link-custom.active,
.page-link-custom:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

@media (max-width: 991px) {
    .blog-list-item {
        flex-direction: column;
        gap: 0;
    }

    .blog-list-img-wrapper {
        flex: none;
        width: 100%;
        height: 250px;
    }

    .blog-list-content {
        padding: 30px;
    }
}

/* ================================================================
   BLOG DETAIL PAGE
   ================================================================ */

.blog-detail-hero {
    background: var(--primary-bg);
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.blog-detail-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.article-container {
    padding: 80px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
}

.article-content h2,
.article-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    margin: 60px 0 30px;
    text-transform: uppercase;
}

.article-content h2 {
    font-size: 2.2rem;
}

.article-content h3 {
    font-size: 1.6rem;
}

.article-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.article-content p:first-of-type {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
}

.article-content blockquote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 60px 0;
    margin: 60px 0;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    text-align: center;
    font-style: italic;
    color: var(--text-main);
}

.article-featured-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 60px;
    box-shadow: 0 30px 60px rgba(7, 47, 119, 0.1);
}

.article-sidebar-meta {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0;
}

.author-info p {
    font-size: 0.75rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 80px 0 40px;
    }

    .blog-detail-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .article-content {
        font-size: 1.05rem;
    }

    .article-content blockquote {
        font-size: 1.4rem;
        padding: 40px 0;
    }

    .article-featured-img {
        height: 300px;
    }
}

/* Related Blogs Section */
.related-blogs-section {
    background: #f8faff;
    border-top: 1px solid var(--glass-border);
}

.related-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 50px;
}


/* --- Advanced Editorial Polish --- */

/* Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
    background: transparent;
}

.reading-progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Drop Cap */
.article-content>p:first-of-type::first-letter {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    float: left;
    line-height: 1;
    padding-right: 15px;
    color: var(--accent-color);
    margin-top: 5px;
}

/* Enhanced Pull Quote */
.article-content blockquote {
    position: relative;
    border: none;
    padding: 80px 40px;
    background: rgba(58, 134, 255, 0.03);
    border-radius: 4px;
}

.article-content blockquote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.article-content blockquote::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.btn-blog-read:hover::after {
    transform: translateX(5px);
}

/* Web Development Page Premium Card & Tabbing Styles */
.portfolio-tabs-wrapper {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
}

.btn-filter {
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-filter:hover {
    color: var(--accent-color);
}

.btn-filter.active {
    background: var(--accent-color) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(7, 47, 119, 0.2);
}

.project-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(7, 47, 119, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(7, 47, 119, 0.03) !important;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 47, 119, 0.08) !important;
    border-color: rgba(7, 47, 119, 0.15) !important;
}

.badge-category {
    background: rgba(7, 47, 119, 0.08);
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-tag {
    background: var(--secondary-bg);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(7, 47, 119, 0.05);
}

.project-card .btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.project-card .btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 10px rgba(7, 47, 119, 0.2);
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .card-img-container img {
    transform: scale(1.08);
}