/*
Theme Name: Print Magic
Theme URI: https://printmagic.example.com
Author: Print Magic Team
Author URI: https://printmagic.example.com
Description: Custom WordPress theme for Print Magic - retro newspaper photo service
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: print-magic
*/

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Brygada+1918:wght@400;500;600;700&display=swap');

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #9B371C;
    --color-secondary: #FAF4DE;
    --color-dark: #2C1810;
    --color-light: #FAF4DE;
    --color-accent: #A0826D;
    --font-primary: 'Georgia', serif;
    --font-secondary: 'Arial', sans-serif;
    --font-hero: 'Lobster', cursive;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-dark);
    line-height: 1.6;
    background: var(--color-light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    background: transparent;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.site-logo {
    display: none !important;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: #FFFFFF;
    font-size: 24px;
    font-family: 'Lobster', cursive;
    letter-spacing: 1px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
    font-weight: 400;
    transition: all 0.3s ease;
    text-transform: none;
}

.main-navigation a:hover {
    color: #FAF4DE;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.9);
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 28px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(155, 55, 28, 0.2), rgba(139, 111, 71, 0.3)),
                      url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--color-light);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
    margin-top: -80px;
}

.hero-title {
    font-family: var(--font-hero);
    font-size: 100px;
    font-weight: normal;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #FAF4DE;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 22px;
    font-family: 'Lobster', cursive;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 18px 60px;
    background: #9B371C;
    color: #FFFFFF;
    font-size: 22px;
    font-family: 'Brygada 1918', serif;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    font-weight: 400;
}

.btn-primary:hover {
    background: #7d2d17;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 100px 20px;
    background: var(--color-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.text-content h2 {
    font-family: 'Brygada 1918', serif;
    font-size: 48px;
    color: var(--color-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.text-content p {
    font-family: 'Brygada 1918', serif;
    font-size: 48px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--color-dark);
    line-height: 1.6;
}

/* Carousel Styles */
.carousel-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.carousel-card {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    overflow: hidden;
    border: 5px solid white;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
    margin-top: 10px;
}

.carousel-btn {
    border-radius: 50%;
    height: 3.5rem;
    width: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--color-dark);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 32px;
    font-weight: bold;
}

.carousel-btn:hover {
    background: var(--color-dark);
    color: white;
    animation: bounceUp 0.6s ease;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-15px); }
    50% { transform: translateY(-7px); }
    75% { transform: translateY(-10px); }
}

/* Contact Info */
.contact-info {
    font-family: 'Brygada 1918', serif;
    font-size: 32px;
    color: var(--color-dark);
    line-height: 2;
    text-align: center;
    margin-top: 30px;
}

.contact-info p {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.contact-info a {
    color: var(--color-dark);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.contact-info a:hover {
    color: var(--color-primary);
    animation: bounceUp 0.6s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.image-grid {
    display: none;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 100px 20px 0px 20px;
    background: transparent !important;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-text h2 {
    font-family: 'Brygada 1918', serif;
    font-size: 48px;
    color: #200A08;
    margin-bottom: 30px;
    text-align: center;
}

.service-text p {
    font-family: 'Brygada 1918', serif;
    font-size: 24px;
    line-height: 1.8;
    color: #200A08;
    text-align: justify;
}

.service-media {
    margin-top: 80px;
}

.service-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.service-media.vertical img {
    height: 600px;
    object-fit: cover;
}

.service-media video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.video-placeholder {
    width: 100%;
    height: 500px;
    background: #ddd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Brygada 1918', serif;
    font-size: 32px;
    color: #666;
}

.services-grid,
.photo-gallery {
    display: none;
}

/* ========================================
   FORMATS SECTION
======================================== */
.formats-section {
    padding: 100px 20px;
    background: var(--color-light);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.format-item {
    background: white;
    padding: 30px;
    border: 2px solid var(--color-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.format-item h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.video-placeholder {
    width: 100%;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #666;
    font-style: italic;
}

/* ========================================
   INTERACTION SECTION
======================================== */
.interaction-section {
    padding: 100px 20px;
    background: var(--color-secondary);
    text-align: center;
}

.interaction-section h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    margin-bottom: 30px;
}

.interaction-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* ========================================
   CONTACT FORM SECTION
======================================== */
.contact-section {
    padding: 0px 20px 100px 20px;
    background: none !important;
}

.form-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    height: 700px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.form-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.form-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 850px;
    background: #FFFFFF;
    padding: 30px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-section-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    color: #200A08;
    margin-bottom: 80px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    width: 100%;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #D0D0D0;
    background: transparent;
    font-size: 22px;
    font-family: 'Brygada 1918', serif;
    color: var(--color-dark);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

.form-field textarea {
    min-height: 80px;
    resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.btn-send {
    padding: 15px 40px;
    background: transparent;
    color: var(--color-dark);
    border: none;
    font-size: 18px;
    font-family: 'Brygada 1918', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-send svg {
    transition: all 0.3s ease;
}

.btn-send:hover {
    color: var(--color-primary);
}

.btn-send:hover svg {
    transform: translate(3px, -3px);
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 18px;
    font-family: 'Brygada 1918', serif;
    transition: color 0.3s;
    margin-right: 10px;
}

.phone-link:hover {
    color: var(--color-primary);
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background: var(--color-primary);
    transform: scale(1.05);
}

.form-message {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    font-family: 'Brygada 1918', serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    border: 1px solid #000;
    background: transparent;
}

.form-success {
    color: #2C1810 !important;
    border-color: #000 !important;
}

.form-warning {
    background: #fff3cd !important;
    color: #856404 !important;
    border-color: #ffc107 !important;
}

.form-error {
    background: #f8d7da !important;
    color: #721c24 !important;
    border-color: #dc3545 !important;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: #FAF4DE;
    padding: 60px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Brygada 1918', serif;
    font-size: 160px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -4px;
    display: inline-block;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 100%;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 18px;
    font-family: 'Brygada 1918', serif;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 30px;
}

.footer-social a {
    color: var(--color-dark);
    text-decoration: underline;
    font-size: 18px;
    font-family: 'Brygada 1918', serif;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-contact {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.footer-phone,
.footer-email {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 18px;
    font-family: 'Brygada 1918', serif;
    transition: color 0.3s;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    /* Navigation/Menu */
    .site-header .container {
        justify-content: center;
    }
    
    .main-navigation ul {
        gap: 20px;
    }
    
    .main-navigation a {
        font-size: 18px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 48px;
        line-height: 1.2;
    }
    
    .btn-primary {
        font-size: 18px;
        padding: 14px 40px;
    }
    
    /* About Section */
    .text-content h2,
    .text-content p {
        font-size: 32px;
    }
    
    .carousel-container {
        min-height: 300px;
        gap: 10px;
    }
    
    .carousel-card {
        width: 11rem;
        height: 11rem;
    }
    
    .carousel-card[data-index="0"] {
        transform: translateX(-60%) scale(0.85);
    }
    
    .carousel-card[data-index="1"] {
        transform: translateX(0) scale(1);
        z-index: 10;
    }
    
    .carousel-card[data-index="2"] {
        transform: translateX(60%) scale(0.85);
    }
    
    .contact-info p {
        font-size: 24px;
    }
    
    /* Services Section */
    .service-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .service-row.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-text h2 {
        font-size: 32px;
    }
    
    .service-text p {
        font-size: 18px;
    }
    
    .service-media img,
    .service-media video,
    .service-media.vertical img,
    .service-media.vertical video {
        height: 450px !important;
        object-fit: cover !important;
    }
    
    .service-media.vertical {
        overflow: hidden;
        position: relative;
    }
    
    #volumeBtn {
        right: 10px !important;
        bottom: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }
    
    /* Form Section */
    .form-wrapper {
        height: auto;
        min-height: 650px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-background {
        display: block;
    }
    
    .form-content {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        width: 88%;
        max-width: 100%;
        padding: 30px 20px;
        margin: 40px auto;
    }
    
    .form-section-title {
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 60px;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .form-field input,
    .form-field textarea {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    
    .contact-links {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: center;
        width: 100%;
    }
    
    .phone-link {
        width: 100%;
        margin: 0 0 5px 0;
    }
    
    /* Footer */
    .footer-logo {
        font-size: 60px;
        letter-spacing: -2px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-nav,
    .footer-social,
    .footer-contact {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .footer-nav a,
    .footer-social a,
    .footer-phone,
    .footer-email {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero-title {
        font-size: 36px;
    }
    
    .btn-primary {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    /* About Section */
    .text-content h2,
    .text-content p {
        font-size: 24px;
    }
    
    .carousel-container {
        min-height: 300px;
    }
    
    .carousel-card {
        width: 10rem;
        height: 10rem;
    }
    
    .contact-info p {
        font-size: 20px;
    }
    
    /* Services */
    .service-text h2 {
        font-size: 26px;
    }
    
    .service-text p {
        font-size: 16px;
    }
    
    .service-media.vertical img,
    .service-media.vertical video {
        height: 300px;
    }
    
    /* Form */
    .form-content {
        padding: 25px 20px;
    }
    
    .form-field input,
    .form-field textarea {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .btn-send {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    .phone-link {
        font-size: 14px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        flex-shrink: 0;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-links {
        gap: 8px;
    }
    
    /* Footer */
    .footer-logo {
        font-size: 48px;
    }
}

/* ========================================
   FLOATING CONTACT BUTTON & MODAL
   ======================================== */

.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 70px;
    height: 70px;
    background: #C4A57B;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(196, 165, 123, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px 0 15px;
}

.floating-contact-btn:hover {
    background: #B89968;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 165, 123, 0.5);
}

.floating-contact-btn .btn-icon {
    width: 40px;
    height: 40px;
    color: #200A08;
    flex-shrink: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-contact-btn:hover .btn-icon {
    transform: scale(1.1);
}

.floating-contact-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
    white-space: nowrap;
    pointer-events: none;
}

.floating-contact-btn .btn-text-title {
    font-family: 'Brygada 1918', serif;
    font-size: 16px;
    font-weight: 600;
    color: #200A08;
}

.floating-contact-btn .btn-text-subtitle {
    font-family: 'Brygada 1918', serif;
    font-size: 14px;
    color: #200A08;
    opacity: 0.8;
}

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #FAF4DE;
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #200A08;
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Brygada 1918', serif;
    font-size: 32px;
    font-weight: 400;
    color: #200A08;
    margin-bottom: 15px;
    text-align: center;
}

.modal-subtitle {
    font-family: 'Brygada 1918', serif;
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.modal-form .form-field {
    margin-bottom: 30px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #D0D0D0;
    background: transparent;
    font-size: 20px;
    font-family: 'Brygada 1918', serif;
    color: #200A08;
    transition: all 0.3s;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: #999;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}

.modal-form textarea {
    resize: none;
    min-height: 80px;
}

.modal-submit {
    padding: 15px 40px;
    background: transparent;
    color: var(--color-dark);
    border: none;
    font-size: 18px;
    font-family: 'Brygada 1918', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
}

.modal-submit:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 15px;
        padding: 0;
        justify-content: center;
    }
    
    .floating-contact-btn .btn-icon {
        width: 35px;
        height: 35px;
    }
    
    .floating-contact-btn .btn-text {
        display: none;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .modal-subtitle {
        font-size: 16px;
    }
}