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

/* Base & CSS Variables for Google Light Theme with Glassmorphism */
:root {
    --bg-color: #ffffff;
    --bg-surface: #f8f9fa; /* Google off-white */
    --text-main: #202124; /* Google black */
    --text-muted: #5f6368; /* Google gray */
    
    --primary: #1a73e8; /* Google Blue */
    --primary-hover: #174ea6;
    
    --google-red: #ea4335;
    --google-yellow: #fbbc04;
    --google-green: #34a853;
    
    --border-color: rgba(218, 220, 224, 0.5); /* Slightly transparent border */
    
    /* Soft Glass Shadows */
    --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.05);
    --shadow-2: 0 8px 32px rgba(26, 115, 232, 0.15); /* Primary tinted shadow */
    --shadow-3: 0 4px 6px 0 rgba(60,64,67,0.3), 0 4px 12px 3px rgba(60,64,67,0.15);
    
    --font-family: 'Inter', sans-serif;
}

/* Dark Mode Theme */
body.dark-mode {
    --bg-color: #202124;
    --bg-surface: #303134;
    --text-main: #e8eaed;
    --text-muted: #9aa0a6;
    --border-color: rgba(95, 99, 104, 0.5);
    --primary: #8ab4f8; /* Lighter blue for dark mode */
    --primary-hover: #aecbfa;
    --shadow-1: 0 4px 30px rgba(0, 0, 0, 0.2);
    --shadow-2: 0 8px 32px rgba(138, 180, 248, 0.15);
    --shadow-3: 0 4px 6px 0 rgba(0,0,0,0.3), 0 4px 12px 3px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Very subtle background blobs so glassmorphism has something to blur */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15; /* Keeps the theme light and Google-like */
    pointer-events: none;
    transition: opacity 0.3s ease;
}
body::before {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -200px; left: -100px;
}
body::after {
    width: 500px; height: 500px;
    background: var(--primary); /* Changed from red */
    bottom: -100px; right: -100px;
}
body.dark-mode::before, body.dark-mode::after {
    opacity: 0.08; /* Even softer in dark mode */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.highlight {
    color: var(--primary);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Glass Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px; /* Modern Google pill shape */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-primary {
    background: rgba(26, 115, 232, 0.85); /* Glassy Google Blue */
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.25);
}
body.dark-mode .btn-primary {
    background: rgba(138, 180, 248, 0.85);
    color: #202124;
}

.btn-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--primary);
    color: var(--primary);
}
body.dark-mode .btn-outline {
    background: rgba(48, 49, 52, 0.5);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(26, 115, 232, 0.1);
    transform: translateY(-2px);
}

.w-full {
    width: 100%;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Glassmorphism Cards */
.glass-card, .material-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    transition: all 0.3s ease;
}
body.dark-mode .glass-card, body.dark-mode .material-card {
    background: rgba(48, 49, 52, 0.65);
}

.glass-card:hover, .material-card:hover {
    box-shadow: var(--shadow-2);
    border-color: var(--primary);
    transform: translateY(-4px);
}

/* Glass Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

body.dark-mode .navbar {
    background: rgba(32, 33, 36, 0.75);
}

/* Scroll Progress Bar */
.progress-container {
    width: 100%;
    height: 3px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001; /* Above navbar */
}

.progress-bar {
    height: 3px;
    background: var(--primary);
    width: 0%;
    border-radius: 0 2px 2px 0;
    transition: width 0.1s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover:not(.btn),
.nav-links a.active:not(.btn) {
    color: var(--text-main);
}

.nav-links a.active:not(.btn) {
    color: var(--primary);
}

.nav-links a.active:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}


/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 1rem;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

body.dark-mode .dropdown-menu {
    background: rgba(32, 33, 36, 0.85);
}

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

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary);
}

body.dark-mode .dropdown-menu a:hover {
    background: rgba(138, 180, 248, 0.1);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-main) 0%, rgba(26, 115, 232, 0.08) 50%, var(--bg-main) 100%);
    background-size: 200% 200%;
    animation: heroGradient 10s ease infinite;
}

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

body.dark-mode .hero {
    background: linear-gradient(135deg, var(--bg-main) 0%, rgba(138, 180, 248, 0.08) 50%, var(--bg-main) 100%);
    background-size: 200% 200%;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-badges {
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Services */
.services {
    padding: 6rem 0;
}

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

.service-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    margin-top: auto;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.service-card .icon svg {
    fill: var(--primary);
}

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

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

.process-step {
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-step p {
    flex-grow: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-step h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.process-step p {
    position: relative;
    z-index: 2;
}

/* Portfolio */
.portfolio {
    padding: 6rem 0;
}

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

.portfolio-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    background-color: rgba(0,0,0,0.03);
    border-bottom: 1px solid var(--border-color);
}
body.dark-mode .project-image {
    background-color: rgba(255,255,255,0.03);
}

.project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info p {
    margin-bottom: 1rem;
}

.project-info p:last-of-type {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-info .btn {
    margin-top: auto;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
}

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

.testimonial-card {
    padding: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
    flex-grow: 1;
}

.testimonial-card h4 {
    margin: 0;
    color: var(--primary);
    margin-top: auto;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-card {
    padding: 2.5rem;
}

.faq-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-card p {
    color: var(--text-main);
    line-height: 1.6;
}

/* Tech Stack */
.tech-stack {
    padding: 4rem 0;
}

.tech-chip {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(26, 115, 232, 0.05);
    color: var(--primary);
    border: 1px solid rgba(26, 115, 232, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

body.dark-mode .tech-chip {
    background: rgba(138, 180, 248, 0.05);
    border-color: rgba(138, 180, 248, 0.2);
}

.tech-chip:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

body.dark-mode .tech-chip:hover {
    color: #202124;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    padding: 3rem 2rem;
    position: relative;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular {
    border-top-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-card .pricing-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.pricing-features li svg {
    color: var(--primary);
}

@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

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

.faq-card {
    padding: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.faq-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.faq-card p {
    color: var(--text-main);
    flex-grow: 1;
    margin: 0;
}

/* CTA Banner */
.cta-banner {
    padding: 4rem 0;
}

.cta-container {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(26, 115, 232, 0.05));
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

body.dark-mode .cta-container {
    background: linear-gradient(135deg, rgba(138, 180, 248, 0.1), rgba(138, 180, 248, 0.05));
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
}

.cta-container h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

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

.btn-cta {
    background: var(--primary);
    color: #ffffff;
    font-size: 1.1rem;
    padding: 0.8rem 2.5rem;
    box-shadow: var(--shadow-2);
}

.btn-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

body.dark-mode .btn-cta {
    background: var(--primary);
    color: #202124;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-field {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.dark-mode .input-field {
    background: rgba(0,0,0,0.2);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary);
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

/* Article Styling (for Insights/Case studies) */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-1);
}
body.dark-mode .article-content {
    background: rgba(48,49,52,0.65);
}

.article-content h1, .article-content h2 {
    color: var(--text-main);
}
.article-content ul {
    padding-right: 2rem;
}
.article-content p, .article-content li {
    font-size: 1.1rem;
    color: var(--text-muted); /* Google darker text */
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    z-index: 101;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger { 
        display: block; 
    }
    
    .nav-links { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        z-index: 100;
        gap: 1.2rem;
    }

    body.dark-mode .nav-links {
        background: rgba(32, 33, 36, 0.95);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a:not(.btn) {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
        width: 100%;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: flex;
        flex-direction: column;
        padding-left: 1rem;
        margin-top: 0.5rem;
        gap: 0.8rem;
    }
    
    body.dark-mode .dropdown-menu {
        background: transparent;
    }

    .hero-title { font-size: 2.2rem; }
    .footer-content { flex-direction: column; }
    .article-content { padding: 2rem; }
    
    /* Reduce giant paddings on mobile */
    .services, .process, .portfolio, .testimonials, .pricing, .faq, .insights-teaser {
        padding: 4rem 0 !important;
    }
    
    /* Reduce internal card paddings */
    .service-card, .process-step, .testimonial-card, .faq-card, .project-info {
        padding: 1.5rem;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    /* Ensure single column on very small screens to avoid overflow */
    .services-grid, .process-grid, .portfolio-grid, .testimonials-grid, .pricing-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Adjust CTA banner padding */
    .cta-container {
        padding: 3rem 1.5rem;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.fc-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.floating-contact.active .fc-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fc-main-btn, .fc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    border: none;
    text-decoration: none;
}

.fc-main-btn {
    width: 60px;
    height: 60px;
    background: var(--primary);
}

.fc-main-btn svg {
    transition: transform 0.3s ease;
}

.floating-contact.active .fc-main-btn svg {
    transform: rotate(45deg);
}

.fc-main-btn:hover {
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

.fc-btn {
    width: 45px;
    height: 45px;
}

.fc-btn:hover {
    transform: scale(1.1);
}

.email-btn {
    background: #EA4335; /* Google Red */
}

.wa-btn {
    background: #25D366; /* WhatsApp Green */
}
