/* PLUGHOST Modern SaaS Design Style Sheet */

/* Theme Variables */
.theme-dark {
    --bg-main: #040811;
    --bg-nav: rgba(4, 8, 17, 0.75);
    --bg-card: rgba(15, 23, 42, 0.65);
    --bg-badge: rgba(255, 111, 60, 0.12);
    --bg-input: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.05);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --shadow: rgba(0, 0, 0, 0.5);
    --glow: rgba(var(--primary-rgb), 0.2);
    --body-bg-gradient: 
        radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 40%);
}

.theme-light {
    --bg-main: #f3f6fb; /* Premium soft blue-gray instead of plain white */
    --bg-nav: rgba(243, 246, 251, 0.75);
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-badge: rgba(var(--primary-rgb), 0.08);
    --bg-input: rgba(15, 23, 42, 0.02);
    --border: rgba(15, 23, 42, 0.06);
    --text-main: #0f172a;
    --text-muted: #475569;
    --shadow: rgba(15, 23, 42, 0.04);
    --glow: rgba(var(--primary-rgb), 0.08);
    --body-bg-gradient: 
        radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.07) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 255, 0.07) 0%, transparent 45%);
}

/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

body {
    background-color: var(--bg-main);
    background-image: var(--body-bg-gradient);
    background-size: 24px 24px, 100% 100%, 100% 100%;
    background-attachment: fixed, scroll, scroll;
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

a, button, select, input, textarea {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

a:hover, a:focus, a:active, button:focus, button:active {
    text-decoration: none !important;
    outline: none !important;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(135deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.theme-toggle:hover {
    color: var(--primary);
    background: var(--bg-badge);
}

.theme-dark .theme-toggle .sun { display: block; }
.theme-dark .theme-toggle .moon { display: none; }
.theme-light .theme-toggle .sun { display: none; }
.theme-light .theme-toggle .moon { display: block; }

/* Client Area Button */
.btn-client {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, var(--primary), rgba(255, 111, 60, 0.85));
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--glow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-client span {
    display: inline;
}

.mobile-menu-client-btn {
    display: none !important;
}

.btn-client:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.3);
}

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

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 5px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 7rem 0 5rem 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideUp 0.8s ease-out;
}

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

.badge-capsule {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-badge);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.badge-capsule .bell {
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-top: 2rem; /* Gap before Fast */
    margin-bottom: 2rem; /* Gap after title */
}

.hero-title span {
    display: block;
    margin-top: 0.8rem; /* Gap after Premium and before web services */
    background: linear-gradient(135deg, var(--primary), #ffa382);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 1.5rem; /* Gap before subtitle */
    margin-bottom: 3.5rem; /* Gap after subtitle */
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.25);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--bg-badge);
    border-color: var(--primary);
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-graphic svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px var(--glow));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Integrations Slider */
.integrations-sec {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.sec-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

.slider-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.integration-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    box-shadow: 0 4px 10px var(--shadow);
    transition: transform 0.3s, border-color 0.3s;
}

.integration-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.integration-icon {
    font-size: 1.8rem;
    font-weight: 700;
}

.integration-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Products Section & Tabs */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 0.4rem;
    border-radius: 50px;
    max-width: fit-content;
    margin: 0 auto 3rem auto;
    box-shadow: 0 4px 15px var(--shadow);
}

.tab-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

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

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.08);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.popular {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.12);
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.price-cycle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.product-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.product-cta {
    display: block;
    text-align: center;
    background: var(--bg-input);
    border: 1px solid var(--border);
    padding: 0.85rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.product-cta:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.popular .product-cta {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.popular .product-cta:hover {
    background: linear-gradient(135deg, var(--primary), #ffa382);
    transform: scale(1.02);
}

/* Features Grid */
.features-sec {
    padding: 6rem 0;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.two-col-layout.reverse {
    direction: rtl;
}

.two-col-layout.reverse .col-content {
    direction: ltr;
}

.col-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 1.5rem; /* Gap before section title */
    margin-bottom: 2rem; /* Gap after section title */
    letter-spacing: -0.5px;
}

.col-content p {
    color: var(--text-muted);
    margin-bottom: 3rem; /* Gap after description and before buttons */
}

.col-graphic {
    display: flex;
    justify-content: flex-end;
}

.col-graphic svg, .col-graphic img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px var(--glow));
}

/* Uptime Checker Terminal Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 10, 18, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

.terminal-wrap {
    background: #020617;
    border: 1px solid rgba(255, 111, 60, 0.15);
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    overflow: hidden;
    animation: popUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popUp {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.terminal-header {
    background: #0f172a;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.terminal-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.terminal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
}

.terminal-close:hover {
    color: #fff;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #4ade80;
    min-height: 250px;
    max-height: 400px;
    overflow-y: auto;
}

.term-line {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.term-prompt {
    color: #38bdf8;
}

.term-output {
    color: #e2e8f0;
}

.term-warning {
    color: #fbbf24;
}

/* Static Policy Page Views */
.policy-page {
    padding: 10rem 0 6rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.policy-header {
    margin-bottom: 3rem;
    text-align: center;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 0.5rem;
}

.policy-content {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.policy-content h3 {
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
}

.policy-content h4 {
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.15rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.policy-content ul, .policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Contact Us Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1.25rem;
}

.contact-icon-box {
    background: var(--bg-badge);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.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.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group input, .form-group textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

/* Footer Section */
.footer {
    background: #020617;
    border-top: 1px solid var(--border);
    color: #94a3b8 !important;
    padding: 5rem 0 0 0;
    margin-top: 6rem;
}

.footer a {
    color: #94a3b8 !important;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary) !important;
}

.footer .logo span {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #f8fafc !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #94a3b8 !important;
}

.brand-desc {
    font-size: 0.9rem;
    max-width: 320px;
    color: #94a3b8 !important;
}

.contact-line {
    font-size: 0.9rem;
    color: #94a3b8 !important;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-group h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc !important;
    margin-bottom: 0.5rem;
}

.footer-links-group a {
    font-size: 0.9rem;
    transition: color 0.3s;
    color: #94a3b8 !important;
}

.footer-links-group a:hover {
    color: var(--primary) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    color: #64748b !important;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

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

.bottom-links a {
    color: #64748b !important;
}

.bottom-links a:hover {
    color: var(--primary) !important;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .col-graphic {
        justify-content: center;
    }
    
    .two-col-layout.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .header-client-btn {
        display: none !important;
    }
    
    .mobile-menu-client-btn {
        display: inline-flex !important;
        align-self: center;
        margin-top: 1rem;
        padding: 0.6rem 1.25rem !important;
        border-radius: 50px !important;
        font-size: 0.9rem !important;
        gap: 0.5rem !important;
        box-shadow: 0 4px 12px var(--glow) !important;
    }
    
    .mobile-menu-client-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .mobile-menu-client-btn span {
        display: inline !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
