/* Root Variables */
:root {
    --primary-color: #ff6b1a;
    --primary-light: #ff8c47;
    --primary-dark: #e65500;
    --red: #dc143c;
    --red-dark: #b01030;
    --blue: #003da5;
    --blue-light: #1a5fd6;
    --dark-bg: #0a0a0a;
    --dark-color: #1a1a1a;
    --card-dark: #1a1a1a;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #b0b0b0;
    --gray-dark: #888888;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 107, 26, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--blue), var(--red), var(--primary-color)) 1;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.navbar-visible {
    transform: translateY(0);
    opacity: 1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #f5e6d3;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-shadow: 
        -2px -2px 0 #1a1a1a,
        2px -2px 0 #1a1a1a,
        -2px 2px 0 #1a1a1a,
        2px 2px 0 #1a1a1a,
        0 0 10px rgba(255, 107, 26, 0.5),
        0 0 20px rgba(255, 107, 26, 0.3);
}

.logo:hover {
    text-shadow: 
        -2px -2px 0 #1a1a1a,
        2px -2px 0 #1a1a1a,
        -2px 2px 0 #1a1a1a,
        2px 2px 0 #1a1a1a,
        0 0 15px rgba(255, 107, 26, 0.8),
        0 0 25px rgba(255, 107, 26, 0.5);
    transform: scale(1.05);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    background: 
        radial-gradient(ellipse at top, rgba(255, 107, 26, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 26, 0.03) 2px,
            rgba(255, 107, 26, 0.03) 4px
        ),
        radial-gradient(circle at 30% 40%, rgba(255, 107, 26, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(220, 20, 60, 0.15) 0%, transparent 30%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 5rem 0;
}

.hero-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 26, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 107, 26, 0.3);
}

.divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--red), var(--primary-color));
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(255, 107, 26, 0.5);
}

.section-header p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: var(--gray);
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 26, 0.3);
    border-left: 4px solid var(--primary-color);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 26, 0.4);
    border-color: var(--primary-color);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.3);
}

.feature-text h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-text p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--card-dark);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 26, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--red), var(--primary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 107, 26, 0.4);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Professional Service Icons */
.service-icon-pro {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.4);
}

.service-icon-pro svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-card:hover .service-icon-pro {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 26, 0.6);
}

/* Service Images */
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 26, 0.2);
}

.service-card:hover .service-image {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.4);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);
}

/* Quick Contact Info Row */
.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.quick-info-card {
    background: var(--card-dark);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 26, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
}

.quick-info-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 26, 0.3);
}

.quick-info-card.clickable {
    cursor: pointer;
}

.quick-info-card.clickable a {
    position: static;
}

.quick-info-card.clickable a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.quick-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(255, 107, 26, 0.4);
}

.quick-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.quick-info-card h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.quick-info-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.quick-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.quick-info-card a:hover {
    color: var(--primary-light);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-dark);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 26, 0.3);
}

.contact-form-wrapper h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: var(--gray);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(255, 107, 26, 0.3);
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.2);
}

.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.7rem;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 107, 26, 0.2);
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 26, 0.4);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.form-message {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--blue), var(--red), var(--primary-color)) 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Page Header */
.page-header {
    margin-top: 70px;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--blue) 50%, var(--dark-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 26, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(255, 107, 26, 0.3);
}

.page-header p {
    font-size: 1.4rem;
    color: var(--white);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: 
        radial-gradient(ellipse at top right, rgba(255, 107, 26, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 50%, rgba(255, 107, 26, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(220, 20, 60, 0.15) 0%, transparent 40%);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* Highlights Section */
.highlights {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.highlight-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--card-dark);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 26, 0.3);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 107, 26, 0.4);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.15);
}

/* Professional SVG Icons */
.highlight-icon-pro {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.4);
}

.highlight-icon-pro svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.highlight-card:hover .highlight-icon-pro {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 26, 0.6);
}

.feature-icon-pro {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.3);
    transition: var(--transition);
}

.feature-icon-pro svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature:hover .feature-icon-pro {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 26, 0.5);
}

.highlight-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight-card p {
    color: var(--gray);
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--primary-color);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* 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);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo {
        max-width: 350px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .services-checkboxes {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .family-photo {
        float: none !important;
        margin: 0 auto 2rem !important;
        display: block;
        max-width: 100% !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .quick-info-card {
        padding: 1.2rem;
    }

    .quick-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }
}
/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: var(--dark-bg);
    min-height: 60vh;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--card-dark);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 26, 0.2);
    transition: var(--transition);
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 26, 0.3);
}

.video-card blockquote {
    margin: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    color: var(--gray);
    padding: 2rem;
    text-align: center;
}

.video-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.video-placeholder p {
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}