/* ==========================================================================
   ACR PREFABRİK - Premium Corporate Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --primary-dark: #0B192C;     /* Main background dark */
    --primary-slate: #1E3E62;    /* Slate Blue corporate primary */
    --accent-blue: #0062FF;      /* Royal blue highlight */
    --accent-teal: #00D4FF;      /* Cyber blue highlights */
    --accent-gold: #F1C40F;      /* Warm golden accent */
    --accent-orange: #FF6B00;    /* Bright orange highlight */
    --text-main: #2D3748;        /* Main body copy */
    --text-muted: #718096;       /* Subtle copy */
    --bg-light: #F7FAFC;         /* Soft light background */
    --bg-white: #FFFFFF;         /* Plain white */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 20px rgba(0, 98, 255, 0.35);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-slate) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(0, 98, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 98, 255, 0.6);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    border-color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Main Header & Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.main-header.scrolled {
    background-color: rgba(11, 25, 44, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--bg-white);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-teal);
}

.main-header.scrolled .logo-title {
    color: var(--bg-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--bg-white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.main-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: var(--accent-teal);
}

.main-header.scrolled .nav-link::after {
    background-color: var(--accent-teal);
}

.btn-nav {
    background-color: var(--accent-blue);
    color: var(--bg-white) !important;
    padding: 8px 20px;
    border-radius: 6px;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background-color: var(--primary-slate);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--bg-white);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .mobile-menu-toggle .bar {
    background-color: var(--bg-white);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0B192C 0%, #1A3038 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 98, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    color: var(--bg-white);
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(0, 98, 255, 0.2);
    border: 1px solid rgba(0, 98, 255, 0.4);
    border-radius: 50px;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-title .highlight {
    background: linear-gradient(to right, #00D4FF, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--accent-orange);
    animation: floating 3s ease-in-out infinite;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.badge-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.badge-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-white);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item {
    border-right: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-item:last-child {
    border: none;
}

.stat-number {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-slate) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.section-title-area {
    margin-bottom: 30px;
}

.section-subtitle {
    display: block;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-features li {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(0, 98, 255, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-features p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Expand cards layout logic when they are odd */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 1.5; /* Centers the bottom two items on desktop nicely if custom width is needed, but we keep default grid flow */
}

/* Adjust grid structure for proper card sizes */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 98, 255, 0.2);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 25, 44, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover class {
    color: red;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-info {
    padding: 30px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}

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

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background-color: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-blue);
    color: var(--bg-white);
    border-color: var(--accent-blue);
    box-shadow: 0 4px 10px rgba(0, 98, 255, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(11, 25, 44, 0.9) 0%, rgba(11, 25, 44, 0) 100%);
    color: var(--bg-white);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-teal);
    font-weight: 700;
    margin-bottom: 4px;
    display: inline-block;
}

.gallery-item-title {
    color: var(--bg-white);
    font-size: 1.15rem;
}

/* Hide animations trigger items */
.gallery-item.hide {
    display: none;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 98, 255, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-detail-item p,
.contact-link {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.map-wrapper {
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-wrapper iframe {
    display: block;
}

/* Form block */
.contact-form-block {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 1);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--bg-white);
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.15);
}

.form-feedback-message {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.form-feedback-message.success {
    color: #2F855A;
}

.form-feedback-message.error {
    color: #C53030;
}

/* Footer Section */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    margin-bottom: 20px;
}

.text-white {
    color: var(--bg-white) !important;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-teal);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-contact-info {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-bottom {
    padding: 30px 0;
    font-size: 0.85rem;
}

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

/* Floating Animated Buttons (WhatsApp & Phone Call) */
.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    position: relative;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Call Button Base styling */
.btn-call {
    background: linear-gradient(135deg, #00C853 0%, #009624 100%); /* Greenish tint to signify active help call or custom bright blue */
    background: linear-gradient(135deg, #0072FF 0%, #00C6FF 100%);
}

/* WhatsApp Button Base Styling */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* Animated Pulse Rings */
.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    box-sizing: border-box;
}

.btn-call .pulse-ring {
    border: 3px solid rgba(0, 198, 255, 0.5);
    animation: phonePulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.btn-whatsapp .pulse-ring {
    border: 3px solid rgba(37, 211, 102, 0.5);
    animation: waPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

/* Keyframes Animations */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Scroll Animations */
.reveal-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-img {
        transform: none;
    }
    .hero-img:hover {
        transform: scale(1.02);
    }
    .hero-badge {
        left: 20px;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .stat-item {
        border-right: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(226, 232, 240, 0.8);
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    .about-content {
        order: 1;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        color: var(--bg-white);
        font-size: 1.2rem;
    }
    .main-header.scrolled .nav-link {
        color: var(--bg-white);
    }
    /* Toggle active state */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .mobile-menu-toggle.active .bar {
        background-color: var(--bg-white);
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .floating-buttons-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
}
