/* 
* Paperframe Studios - Event Management Company
* Monochrome theme with orange accents
*/

/* Theme Variables */
:root {
    /* Common variables */
    --primary-color: #ff6b35; /* Orange accent */
    --transition: all 0.3s ease;
    
    /* Light theme (default) */
    --bg-color: #ffffff;
    --bg-secondary: #f2f2f2;
    --text-color: #333333;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --heading-color: #1a1a1a;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
}

/* Dark theme variables */
.dark-theme {
    --bg-color: #121212;
    --bg-secondary: #1e1e1e;
    --text-color: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    --heading-color: #ffffff;
    --border-color: #333333;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --card-bg: #1e1e1e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.accent-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Navigation */
header {
    position: static;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    box-shadow: var(--box-shadow);
    transition: background 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}

/* Header Background */
:root {
    --header-bg: linear-gradient(90deg, #f7f7f7 0%, #ffffff 100%);
    --accent-rgb: 255, 107, 53; /* RGB values for accent color */
}

.light-theme {
    --header-bg: linear-gradient(90deg, #f7f7f7 0%, #ffffff 100%);
}

.dark-theme {
    --header-bg: linear-gradient(90deg, #232526 0%, #181818 100%);
}

header {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: none;
}

.logo-img:hover {
    transform: scale(1.05);
}

.light-theme .logo-light {
    display: block;
}

.dark-theme .logo-dark {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

/* Hide hamburger menu on desktop */
.nav-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu li {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    padding: 20px 0;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
}

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

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

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

/* Header Buttons */
.header-btn, .theme-toggle {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 24px;
    height: 40px;
}

.header-btn:hover, .theme-toggle:hover {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-color);
}

.theme-toggle {
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
    margin-left: 16px;
}

.light-theme .fa-sun {
    display: none;
}

.light-theme .fa-moon {
    display: block;
}

.dark-theme .fa-sun {
    display: block;
}

.dark-theme .fa-moon {
    display: none;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--header-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.3s ease;
        z-index: 999;
        display: none;
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--text-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    .light-theme .nav-toggle span {
        background: #222;
    }
    .dark-theme .nav-toggle span {
        background: #fff;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}





.header-right .nav-toggle {
    margin-left: 30px;
}


.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 4px;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-logo {
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    background: var(--bg-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .partner-logo {
        width: 200px;
        height: 110px;
    }
}

@media screen and (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .partner-logo {
        width: 160px;
        height: 90px;
        padding: 15px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.hero .btn {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

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

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text {
    max-width: 800px;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
}

.service-category h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.92);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    z-index: 2;
    transform: translateY(10px);
    border-radius: 10px;
    overflow-y: auto;
    /* Subtle text shadow for better readability */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-desc {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .service-desc {
        font-size: 0.85rem;
        padding: 15px 10px;
        line-height: 1.4;
    }
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white-color);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-image {
    height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

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

/* Gallery item sizes for masonry effect */
.gallery-item-1 {
    grid-column: 1 / 7;
    grid-row: span 1;
}

.gallery-item-2 {
    grid-column: 7 / 13;
    grid-row: span 1;
}

.gallery-item-3 {
    grid-column: 1 / 5;
    grid-row: span 1;
}

.gallery-item-4 {
    grid-column: 5 / 13;
    grid-row: span 1;
}

.gallery-item-5 {
    grid-column: 1 / 7;
    grid-row: span 1;
}

.gallery-item-6 {
    grid-column: 7 / 13;
    grid-row: span 1;
}

.gallery-item-7 {
    grid-column: 1 / 5;
    grid-row: span 1;
}

.gallery-item-8 {
    grid-column: 5 / 9;
    grid-row: span 1;
}

.gallery-social {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.gallery-social a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.gallery-social a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    padding: 0 20px;
}

.testimonial-content {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--primary-color);
    margin-right: 3px;
}

.testimonial-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-position {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: none;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: var(--transition);
    color: var(--text-color);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.centered-contact {
    display: flex;
    justify-content: center;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.centered-contact .contact-form {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Form status messages */
#form-status {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 0.95rem;
    display: none;
}

#form-status.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

#form-status.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid #F44336;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Shelved Contact Form */
.form-shelved {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.shelved-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-shelved h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.form-shelved p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.shelved-contact-options {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shelved-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.shelved-option i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.shelved-option a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.shelved-option a:hover {
    text-decoration: underline;
}

.form-shelved .btn {
    margin-top: 10px;
}

/* Sticky CTA */
/* Remove old sticky-cta styles (no longer needed) */
/* .sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.sticky-cta .btn {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--white-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--light-medium);
}

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

.footer-column h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-medium);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column ul li a i {
    margin-right: 5px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-medium);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Floating Actions: CTA and Theme Toggle stacked, right-aligned */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

/* Remove theme-switch (slider) styles */

.floating-cta {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.25);
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 30px;
    margin: 0;
}

/* Floating Theme Toggle Button Styles */
.floating-theme-toggle-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    cursor: pointer;
    margin-bottom: 0;
}
.floating-theme-toggle-btn:hover {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: scale(1.08) rotate(15deg);
}
.light-theme .floating-theme-toggle-btn {
    background: var(--primary-color);
    color: #fff;
}
.dark-theme .floating-theme-toggle-btn {
    background: #222;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.floating-theme-toggle-btn .dark-icon {
    display: inline;
}
.floating-theme-toggle-btn .light-icon {
    display: none;
}
.light-theme .floating-theme-toggle-btn .dark-icon {
    display: inline;
}
.light-theme .floating-theme-toggle-btn .light-icon {
    display: none;
}
.dark-theme .floating-theme-toggle-btn .dark-icon {
    display: none;
}
.dark-theme .floating-theme-toggle-btn .light-icon {
    display: inline;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta .btn {
    padding: 15px 35px;
    font-size: 1rem;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .header-right {
        flex-direction: row;
        justify-content: flex-end;
        width: 100%;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100vw;
        height: calc(100vh - 70px);
        background: var(--header-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
        z-index: 999;
        display: none;
    }
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    .nav-menu li {
        margin: 15px 0;
    }
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
}

    .navbar {
        flex-direction: row;
        padding: 10px 0;
    }
    .logo-img {
        width: 220px;
        height: 90px;
    }
    .header-right {
        flex: 1 1 auto;
        justify-content: flex-end;
    }
    .header-right .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
        z-index: 999;
    }
    .header-right .nav-toggle {
        margin-left: 0;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .theme-toggle {
        position: absolute;
        right: 60px;
        top: 15px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
}


@media screen and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item-1 {
        grid-column: 1 / 7;
    }

    .gallery-item-2 {
        grid-column: 1 / 7;
    }

    .gallery-item-3 {
        grid-column: 1 / 7;
    }

    .gallery-item-4 {
        grid-column: 1 / 7;
    }
}

@media screen and (max-width: 576px) {
    .floating-actions {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
    .floating-cta {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    .floating-theme-toggle-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-auto-rows: 250px;
    }
}
