/* 
   JVSUPER5 - Main Stylesheet 
   Theme: Navy Blue (#1a3a52) & Gold (#d4af37)
   Fonts: Montserrat (Titles) & Open Sans (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1a3a52;
    --primary-light: #244b69;
    --primary-dark: #12293b;
    --accent-color: #d4af37;
    --accent-hover: #b4932a;
    --accent-light: #fff9e6;

    --text-dark: #2c3e50;
    --text-body: #5a5a5a;
    --text-light: #f8f9fa;
    --text-white: #ffffff;

    --bg-light: #f8f9fa;
    --bg-white: #ffffff;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.3);

    --transition: all 0.3s ease-in-out;
    --transition-slow: all 0.6s ease-in-out;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --header-height: 80px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    /* Base size */
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-white);
}

.text-gold {
    color: var(--accent-color);
}

.section-title {
    font-size: 2.625rem;
    /* 42px */
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    /* 20px */
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Skip to main content link (accessibility) */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 20px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-to-main:focus {
    top: 0;
    position: fixed;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slow);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-slow);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(26, 58, 82, 0.95);
    /* Navy with opacity */
    color: var(--text-white);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(26, 58, 82, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent-color);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-white);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
}

.nav-cta {
    margin-left: 30px;
    padding: 12px 30px;
    font-size: 1rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
    border-radius: 3px;
}

/* Mobile Menu Active State */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Use the generated image here. Note relative path from CSS file currently is incorrect if not careful. */
    /* Assuming index.html is root, style.css is css/. path from css/ is ../assets/ */
    background: url('../assets/images/hero_update.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax-ish */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 58, 82, 0.4), rgba(26, 58, 82, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    /* 56px */
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    /* JS handles fade in */
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    /* 24px */
    color: #f0f0f0;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-cta {
    font-size: 1.125rem;
    padding: 18px 45px;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.8s ease-out 0.6s forwards;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* About Section */
.about {
    background-color: var(--bg-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* 60/40 */
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    /* 18px */
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
}

.about-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    display: block;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.badge {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.badge:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.badge-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: inline-block;
}

.badge-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.badge-desc {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* Counters */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.counter-item {
    padding: 20px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 1.125rem;
    color: var(--text-body);
}

/* Services Section */
.services {
    background-color: var(--bg-light);
    background-image: url('../assets/images/world_map_bg.png');
    /* Pattern */
    background-size: cover;
    background-blend-mode: overlay;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.icon-container {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-container {
    transform: scale(1.1);
}

.service-icon {
    font-size: 2.5rem;
    /* 40px */
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-title {
    font-size: 1.375rem;
    /* 22px */
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--accent-color);
}

.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* Why Us Section */
.why-us {
    background-color: var(--primary-color);
    color: var(--text-white);
    /* Pattern overlay can go here too if desired */
}

.why-us .section-title {
    color: var(--text-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.advantage-item {
    display: flex;
    padding: 25px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.advantage-item:hover {
    border-left-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.check-icon {
    color: var(--accent-color);
    font-size: 1.75rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.advantage-content p {
    font-size: 1rem;
    color: #d0d0d0;
}

/* Contact Section */
.contact {
    border-top: 4px solid var(--accent-color);
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.email-box {
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.email-box.primary {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    border: 2px solid var(--accent-color);
}

.email-box.primary:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-gold);
}

.email-box.secondary {
    background: var(--bg-light);
    border: 2px solid #e0e0e0;
}

.email-box.secondary:hover {
    border-color: var(--accent-color);
}

.email-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.email-box.secondary .email-icon {
    color: var(--primary-color);
}

.email-details span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-body);
    margin-bottom: 5px;
}

.email-link {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    /* 22px */
    font-weight: 700;
    color: var(--accent-color);
}

.email-link:hover {
    text-decoration: underline;
    color: var(--accent-hover);
}

.email-box.secondary .email-link {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-details-list {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-hint {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
}

.checkbox-group input {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
}

.checkbox-label {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
    border-radius: 8px;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Validation Styles */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-input.valid,
.form-select.valid,
.form-textarea.valid {
    border-color: #28a745;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.form-general-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    font-size: 0.9375rem;
    display: none;
}

.form-success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}

/* Alert messages */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Honeypot field - hidden from users */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    display: inline-block;
    border-bottom: 2px solid var(--accent-color);
}

.footer-tagline {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b0b0b0;
    font-size: 0.9375rem;
    display: block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
    border-left: 2px solid var(--accent-color);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 0.9375rem;
}

.footer-icon {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 0.875rem;
    color: #888;
}

.footer-legal {
    margin-top: 10px;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 16px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
    background-color: var(--accent-hover);
}

.floating-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

/* Legal Pages Styling */
.section-legal {
    padding: 150px 0 100px;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 30px;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
}

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 30px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 20px;
    color: #333;
}

.legal-content ul {
    margin-left: 30px;
    list-style-type: none;
}

.legal-content ul li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    /* Space for the icon */
    margin-left: -1.5em;
}

.legal-cta {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

/* MEDIA QUERIES */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        order: -1;
        max-width: 800px;
        margin: 0 auto;
    }

    .services-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        width: 95%;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full Screen */
        height: 100vh;
        background-color: rgba(26, 58, 82, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.4s ease-in-out;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-cta {
        display: none;
    }

    /* Hide CTA in menu, use sticky btn */

    .hamburger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .contact-layout,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .counters-grid,
    .trust-badges {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-btn {
        padding: 14px 24px;
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .email-box {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        text-align: center;
        gap: 10px;
    }

    .email-box .email-details {
        width: 100%;
    }

    .email-link {
        font-size: 1.1rem;
        word-break: break-all;
    }

    .contact-heading {
        font-size: 1.5rem;
    }
}