/* =========================================================================
   Steve Robinson - Digital Marketing Website
   Premium Modern Aesthetic (Glassmorphism, Vibrant Blues, Clean Typography)
   ========================================================================= */

/* --- CSS Variables --- */
:root {
    /* Colors */
    --color-primary: #3366FF;
    /* Vibrant Blue */
    --color-primary-hover: #254EDB;
    /* Darker Blue */
    --color-white: #FFFFFF;
    --color-light-bg: #F4F7FE;
    /* Very light cool gray/blue background */
    --color-dark-bg: #EAEFFC;
    /* Slightly darker bluish gray */

    --text-main: #1C2331;
    /* Dark Navy/Charcoal for main text */
    --text-muted: #6B7280;
    /* Medium Gray for body text/labels */

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(244, 247, 254, 0.8) 0%, rgba(228, 235, 255, 0.4) 100%);
    --gradient-blue: linear-gradient(135deg, #4A7AFA 0%, #254EDB 100%);

    /* Typography */
    --font-primary: 'Playfair Display', serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-lg: 0 20px 40px -10px rgba(51, 102, 255, 0.15);
    /* Tinted subtle shadow */
    --shadow-image: 0 30px 60px -15px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s ease;
}

/* --- Resets & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-muted);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--color-primary);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.bg-light {
    background-color: var(--color-light-bg);
}

.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    outline: none;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(51, 102, 255, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(51, 102, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid #E5E7EB;
    background: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    transition: var(--transition-medium);
    background: rgba(255, 255, 255, 0.0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo-img {
    height: 110px;
    width: auto;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    height: 110px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-pic-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Nav Styles */
.mobile-nav {
    position: fixed;
    top: 70px;
    /* Below navbar */
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 1rem 2rem;
    transform: translateY(-150%);
    transition: var(--transition-medium);
    z-index: 999;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.badge-light {
    background: rgba(51, 102, 255, 0.1);
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 90%;
    margin-bottom: 3rem;
    color: #4B5563;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-image);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-medium);
    max-width: 100%;
    margin: 0 auto;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: var(--gradient-blue);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 140px;
    height: 140px;
    animation: float 6s ease-in-out infinite;
}

.floating-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.floating-badge .text {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(51, 102, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.glow-top-left {
    top: -200px;
    left: -200px;
}

.glow-top-right {
    top: 100px;
    right: -200px;
    background: radial-gradient(circle, rgba(162, 185, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- About Section --- */
.about {
    position: relative;
    background-image: url('about-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.85); /* Dark slate/navy overlay */
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about .section-subtitle {
    color: #93C5FD; /* Lighter blue for better visibility on dark */
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    color: var(--color-white);
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1.75rem;
}

.about-text p:first-of-type {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 2.5rem;
}

.read-more-btn {
    display: none;
}

.ms-1 {
    margin-left: 0.35rem;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.partner-badge .check-icon {
    color: var(--color-primary);
    font-size: 2rem;
}

.partner-text {
    display: flex;
    flex-direction: column;
}

.partner-text strong {
    color: var(--text-main);
    font-size: 1.125rem;
}

.partner-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- Services Section --- */
.section-header {
    max-width: 600px;
    margin: 0 auto 5rem;
}

.services-interactive-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Column: Service List */
.services-list-container {
    padding-right: 2rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: var(--transition-medium);
}

.service-item:hover, .service-item.active {
    padding-left: 1rem;
}

.service-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 2rem;
    opacity: 0.6;
    transition: var(--transition-medium);
}

.service-item:hover .service-number, .service-item.active .service-number {
    opacity: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    flex-grow: 1;
    transition: var(--transition-medium);
}

.service-item:hover .service-title, .service-item.active .service-title {
    color: var(--color-primary);
}

.service-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-medium);
}

.service-item:hover .service-arrow, .service-item.active .service-arrow {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

/* Right Column: Service Details Card */
.service-details-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 120px;
    transition: var(--transition-medium);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: var(--color-light-bg);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.service-details-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.service-details-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.tag {
    background: var(--color-light-bg);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Fade animation for content swapping */
.fade-out {
    opacity: 0;
    transform: translateY(10px);
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* --- Omnichannel Social Section --- */
.social-dominance {
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.social-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.social-content h2 {
    color: var(--color-white);
}

.social-content p {
    color: rgba(255, 255, 255, 0.9);
}

.social-platforms {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-white);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-circle:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-5px);
}

/* --- Contact Section --- */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    background: var(--color-white);
    padding: 5rem 4rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-image);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-blue);
}

.contact-desc {
    margin: 0 auto 3.5rem;
    max-width: 600px;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--color-light-bg);
    padding: 1rem 2rem 1rem 1rem;
    border-radius: 50px;
    transition: var(--transition-medium);
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-pill a {
    color: inherit;
}

.contact-pill:hover {
    background: var(--color-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
}

.contact-pill .icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.contact-pill:hover .icon-wrapper {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Form Styles */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    background: #F9FAFB;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(51, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success-message {
    margin-top: 1rem;
    padding: 1rem;
    background: #D1FAE5;
    color: #065F46;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    background: #0F172A;
    /* Darker, more premium background */
    color: #94A3B8;
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 1px solid #1E293B;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    width: max-content;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-bio {
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    width: 100%;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1E293B;
    color: #F8FAFC;
    transition: var(--transition-medium);
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    color: white;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-links,
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact-info li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-contact-info li {
    color: #94A3B8;
    transition: var(--transition-fast);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-info i {
    color: var(--color-primary);
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.mt-2 {
    margin-top: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1E293B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #94A3B8;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* --- Basic Animations for Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Why Work With Me Section --- */
.why-work-with-me {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.why-work-with-me::before,
.why-work-with-me::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}
.why-work-with-me::before {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(51, 102, 255, 0.08);
}
.why-work-with-me::after {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(162, 185, 255, 0.1);
}

.why-work-with-me .container {
    position: relative;
    z-index: 10;
}

.why-work-with-me .section-header {
    margin-bottom: 2.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(51,102,255,0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(51, 102, 255, 0.08);
    border-color: rgba(51, 102, 255, 0.2);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 16px rgba(51, 102, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.why-card:hover .why-icon {
    transform: scale(1.08) rotate(5deg);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-main);
    font-weight: 700;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-card {
        padding: 2rem;
    }
    
    .why-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {

    .hero-container,
    .about-container {
        gap: 3rem;
    }

    .social-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-platforms {
        justify-content: center;
    }

    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 860px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 75px;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .services-interactive-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-details-card {
        position: relative; /* remove sticky on mobile to avoid overlapping issues */
        top: 0;
        padding: 2.5rem 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero {
        padding: 8rem 0 4rem;
        text-align: center;
    }

    .hero-content {
        display: contents;
    }

    .hero-content h1 {
        order: 1;
    }

    .hero-content p {
        order: 2;
        margin: -1.5rem auto 0.5rem;
    }

    .hero-image-wrapper {
        order: 3;
        max-width: 500px;
        margin: -2rem auto 2rem;
    }

    .hero-cta {
        order: 4;
        justify-content: center;
    }

    .about-images {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
        padding: 0 0.5rem;
    }

    .about-text p {
        margin-bottom: 1rem;
    }

    .about-text p:first-of-type {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
        text-align: left;
    }

    .about-text-more {
        display: none;
    }

    .about-text-more.expanded {
        display: block;
    }

    .read-more-btn {
        display: inline-flex;
        align-items: center;
        background: transparent;
        border: none;
        color: #93C5FD;
        font-family: inherit;
        font-weight: 600;
        font-size: 1.05rem;
        cursor: pointer;
        padding: 0.5rem 0;
        margin-top: -0.5rem;
        margin-bottom: 1.5rem;
        transition: var(--transition-fast);
    }

    .partner-badge {
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-card {
        padding: 4rem 2rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .floating-badge {
        width: 100px;
        height: 100px;
        left: -10px;
        bottom: -10px;
        padding: 1rem;
    }

    .floating-badge .number {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 2.5rem 1rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .contact-pill {
        padding: 0.5rem;
        gap: 0.5rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .contact-pill .icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
}