:root {
    /* Colors */
    --primary: #db0b0b;
    /* Brand Red */
    --primary-dark: #a90909;
    /* Darker Red */
    --primary-light: #fef2f2;
    /* Light Red */

    --secondary: #0f172a;
    /* Slate 900 */

    --text-main: #1e293b;
    /* Slate 800 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-light: #f8fafc;
    /* Slate 50 */

    --bg-body: #ffffff;
    --bg-light: #f8fafc;

    --border: #e2e8f0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #db0b0b 0%, #ff4d4d 100%);
    --gradient-text: linear-gradient(135deg, #db0b0b 0%, #ff4d4d 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    gap: 0.5rem;
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(98, 15, 112, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(98, 15, 112, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.hero .btn-outline:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-white:hover {
    color: var(--primary-dark);
}

.btn-light {
    background-color: white;
    color: var(--text-main);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background-color: var(--primary);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
    background-color: white;
    /* Opaque white to hide logo borders */
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-color: var(--border);
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    text-decoration: none;
}

.logo img {
    height: 40px;
    /* Adjust height as needed */
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-only {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #a90909 0%, #000000 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.badge-new {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, #ff4d4d 0%, #ff9999 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-preview {
    position: relative;
    margin-top: 2rem;
}

/* Laptop mockup for Agency Portfolio Showcase - 3D */
.hero-preview-laptop {
    background: #000;
    border-radius: 16px;
    padding: 3rem 2rem 4rem;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.laptop-mockup {
    position: relative;
    transform-style: preserve-3d;
    max-width: 580px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transform: rotateX(18deg) rotateY(-8deg) translateZ(0);
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.laptop-screen {
    position: relative;
    background: linear-gradient(180deg, #252525 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 12px 12px 0 0;
    padding: 14px 14px 10px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

/* Screen thickness - back edge */
.laptop-screen::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 8px;
    right: 8px;
    height: 8px;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border-radius: 0 0 4px 4px;
    transform: rotateX(-90deg);
    transform-origin: top center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.laptop-bezel {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.laptop-bezel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    z-index: 2;
    box-shadow: inset 0 0 0 1px #444, 0 0 8px rgba(0, 0, 0, 0.5);
}

.laptop-screen-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.laptop-screen-content img,
.laptop-screen-content iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.laptop-screen-content img {
    object-fit: cover;
}

.laptop-screen-content iframe {
    min-height: 220px;
}

.laptop-hinge {
    position: relative;
    height: 16px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 25%, #0a0a0a 50%, #1a1a1a 75%, #252525 100%);
    border-radius: 0 0 8px 8px;
    margin: 0 16px;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hinge 3D edge */
.laptop-hinge::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 4px;
    right: 4px;
    height: 6px;
    background: #0d0d0d;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.laptop-base {
    position: relative;
    transform-style: preserve-3d;
    background: linear-gradient(180deg, #1f1f1f 0%, #151515 15%, #0d0d0d 50%, #080808 100%);
    border-radius: 0 0 20px 20px;
    padding: 20px 24px 28px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Base front edge - 3D thickness */
.laptop-base::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 12px;
    right: 12px;
    height: 12px;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0d0d0d 100%);
    border-radius: 0 0 12px 12px;
    transform: rotateX(90deg);
    transform-origin: top center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
}

.laptop-keyboard {
    background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
    border-radius: 8px;
    padding: 14px 18px 10px;
    border: 1px solid #1a1a1a;
    min-height: 60px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 11px,
        rgba(255, 255, 255, 0.02) 11px,
        rgba(255, 255, 255, 0.02) 12px
    );
}

.laptop-trackpad {
    width: 100px;
    height: 56px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #080808 100%);
    border-radius: 6px;
    margin: 10px auto 0;
    border: 1px solid #222;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.05);
}

.hero-preview-laptop .floating-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.preview-card.main {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    border: 1px solid var(--border);
}

.browser-header {
    display: flex;
    gap: 8px;
    padding: 8px 8px 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ef4444;
}

.dot.yellow {
    background-color: #f59e0b;
}

.dot.green {
    background-color: #10b981;
}

.preview-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 3s;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Demos Grid */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.demo-card {
    text-align: left;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.demo-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: rgba(98, 15, 112, 0.3);
}

.demo-image {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 12px 12px 0 0;
    border: none;
}

.demo-card:hover .demo-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.demo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.demo-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.link-arrow:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
    /* Slide arrow effect */
}

/* Featured Card (Landscape) */
.demo-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
}

.demo-card.featured .demo-image {
    width: 65%;
    /* Increased width slightly for better landscape view */
    border-radius: 12px 0 0 12px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    /* Removed height: 100% to let image define height */
    display: flex;
    align-items: center;
    background-color: #f8fafc;
}

.demo-card.featured .demo-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.demo-card.featured .card-content {
    width: 35%;
    padding: 2.5rem;
}

.demo-card.featured h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.demo-card.featured p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .demo-card.featured {
        flex-direction: column;
    }

    .demo-card.featured .demo-image {
        width: 100%;
        border-radius: 12px 12px 0 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .demo-card.featured .card-content {
        width: 100%;
        padding: 1.5rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(98, 15, 112, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.bg-blue {
    background-color: #3b82f6;
}

.bg-purple {
    background-color: #8b5cf6;
}

.bg-green {
    background-color: #10b981;
}

.bg-orange {
    background-color: #f97316;
}

.bg-red {
    background-color: #ef4444;
}

.bg-teal {
    background-color: #14b8a6;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact & About Section */
.contact-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .contact-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-column h2,
.contact-column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.about-column p {
    color: black;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: black;
}

.contact-list i {
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-list a {
    color: black;
    transition: color 0.2s;
}

.contact-list a:hover {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: radial-gradient(circle at 50% 0%, #a90909 0%, #000000 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: background-color 0.2s;
}

.social-links a:hover {
    background-color: var(--primary);
}

.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: white;
}

.footer-newsletter h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem;
    border-radius: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem;
    color: white;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary);
    border: none;
    color: white;
    width: 40px;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .floating-card {
        display: none;
    }

    .laptop-mockup {
        transform: rotateX(14deg) rotateY(-5deg) translateZ(0);
    }
}

@media (max-width: 600px) {
    .hero-preview-laptop {
        padding: 2rem 1rem 3rem;
    }

    .laptop-mockup {
        transform: rotateX(12deg) rotateY(-3deg) translateZ(0);
    }

    .laptop-base {
        padding: 14px 16px 18px;
    }

    .laptop-keyboard {
        min-height: 45px;
        padding: 10px 12px 8px;
    }

    .laptop-trackpad {
        width: 70px;
        height: 40px;
        margin: 8px auto 0;
    }

    .laptop-hinge {
        height: 12px;
    }

    .laptop-screen::after {
        height: 6px;
        bottom: -6px;
    }

    .laptop-base::before {
        height: 8px;
        bottom: -8px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        transition: transform 0.3s;
        z-index: 900;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .mobile-only {
        display: inline-flex;
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-main);
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    color: #333;
    line-height: 1.6;
}

.modal-body h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body a {
    color: var(--primary);
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: right;
}

/* Proposal Form */
.proposal-email-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    transition: color 0.2s, text-decoration 0.2s;
}

.proposal-email-link:hover {
    color: var(--primary-dark, #2563eb);
    text-decoration: underline;
}

#proposal-modal .modal-body p {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}