/* Rav Photography - Main CSS File */

/* CSS Variables */
:root {
    --primary-color: #d4af37;      /* Gold */
    --secondary-color: #1a1a1a;     /* Dark Black */
    --accent-color: #ffd700;        /* Bright Gold */
    --text-primary: #ffffff;       /* White */
    --text-secondary: #b8b8b8;     /* Light Gray */
    --text-muted: #888888;         /* Muted Gray */
    --background: #0d0d0d;         /* Deep Black */
    --surface: #1a1a1a;            /* Dark Surface */
    --surface-light: #252525;      /* Light Surface */
    --border-color: #333333;       /* Border */
    --success: #28a745;            /* Success Green */
    --warning: #ffc107;            /* Warning Yellow */
    --danger: #dc3545;             /* Danger Red */
    --info: #17a2b8;               /* Info Blue */
}

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

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

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

/* Header Styles - Enhanced & Attractive */
.header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(13, 13, 13, 0.99) 100%);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%) 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 2px 8px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--accent-color) 50%, 
        var(--primary-color) 80%, 
        transparent 100%);
    opacity: 0.6;
}

.header:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                0 4px 12px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.nav-brand {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-brand:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-brand h2 span {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.nav-brand h2 span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 1px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.nav-menu a:hover::before {
    width: 100%;
    height: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Footer Styles */
.footer {
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.social-link i {
    font-size: 1.1rem;
}

.newsletter h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 10px;
}

.newsletter p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 10px 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

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

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-decoration: none;
    line-height: 1.4;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.payment-methods h5 {
    color: var(--text-primary);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-left-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-left-color: var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    border-left-color: var(--info);
    color: var(--info);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

/* Page Header Styles */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.98) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-header-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 15px 0;
        height: 70px;
    }
    
    /* Mobile page-header fix for fixed navbar */
    .page-header {
        padding-top: 130px; /* 70px navbar + extra spacing */
        margin-top: 0;
    }
    
    .nav-brand {
        left: 15px;
    }
    
    .nav-brand h2 {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        right: 15px;
        padding: 10px;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(13, 13, 13, 0.98) 0%, 
            rgba(26, 26, 26, 0.99) 50%, 
            rgba(13, 13, 13, 0.98) 100%);
        backdrop-filter: blur(25px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 
            10px 0 50px rgba(0, 0, 0, 0.9),
            5px 0 20px rgba(212, 175, 55, 0.3),
            inset -1px 0 0 rgba(255, 255, 255, 0.1);
        z-index: 999;
        overflow-y: auto;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-right: 2px solid transparent;
        border-image: linear-gradient(180deg, 
            var(--primary-color) 0%, 
            var(--accent-color) 50%, 
            var(--primary-color) 100%) 1;
    }
    
    .nav-menu.active {
        display: flex;
        left: 0;
    }
    
    /* Mobile Menu Header - Professional */
    .nav-menu::before {
        content: '';
        display: block;
        padding: 40px 20px 25px;
        background: linear-gradient(135deg, 
            rgba(212, 175, 55, 0.15) 0%, 
            rgba(255, 215, 0, 0.05) 50%,
            transparent 100%);
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        position: relative;
    }
    
    .nav-menu::after {
        content: 'Navigation';
        position: absolute;
        top: 35px;
        left: 20px;
        color: var(--primary-color);
        font-size: 1.6rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Add close button to mobile menu */
    .nav-menu-close {
        position: absolute;
        top: 25px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(212, 175, 55, 0.2);
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu-close:hover {
        background: var(--primary-color);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    
    .nav-menu-close::before,
    .nav-menu-close::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
    }
    
    .nav-menu-close::before {
        transform: rotate(45deg);
    }
    
    .nav-menu-close::after {
        transform: rotate(-45deg);
    }
    
    .nav-menu a {
        padding: 20px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
        font-weight: 600;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-left: 0;
        transform: translateX(0);
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
        transition: all 0.4s ease;
        border-radius: 2px;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
        border-radius: 50%;
        transition: all 0.4s ease;
        z-index: -1;
    }
    
    .nav-menu a:hover {
        color: var(--primary-color);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
        padding-left: 40px;
        transform: translateX(8px);
        text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    }
    
    .nav-menu a:hover::before {
        width: 4px;
        height: 70%;
    }
    
    .nav-menu a:hover::after {
        width: 100%;
        height: 100%;
    }
    
    .nav-menu a.active {
        color: var(--primary-color);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
        padding-left: 40px;
        transform: translateX(5px);
        border-left: 4px solid var(--primary-color);
    }
    
    .nav-menu a.active::before {
        width: 4px;
        height: 70%;
        background: var(--accent-color);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        opacity: 0;
    }
    
    .nav-overlay.active {
        display: block;
        animation: fadeInOverlay 0.3s ease forwards;
    }
    
    @keyframes fadeInOverlay {
        to {
            opacity: 1;
        }
    }
    
    /* Professional mobile menu enhancements */
    .nav-menu a i {
        margin-right: 12px;
        font-size: 0.9rem;
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover i {
        opacity: 1;
        transform: scale(1.1);
    }
    
    /* Menu item stagger animation */
    .nav-menu.active a {
        opacity: 0;
        transform: translateX(-30px);
        animation: slideInMenuItems 0.5s ease forwards;
    }
    
    .nav-menu.active a:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active a:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active a:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active a:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active a:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active a:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu.active a:nth-child(7) { animation-delay: 0.4s; }
    .nav-menu.active a:nth-child(8) { animation-delay: 0.45s; }
    .nav-menu.active a:nth-child(9) { animation-delay: 0.5s; }
    .nav-menu.active a:nth-child(10) { animation-delay: 0.55s; }
    
    @keyframes slideInMenuItems {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Add icons to mobile menu items */
    .nav-menu a:nth-child(1)::before { content: '\f015'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(2)::before { content: '\f05a'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(3)::before { content: '\f030'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(4)::before { content: '\f008'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(5)::before { content: '\f03d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(6)::before { content: '\f02d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(7)::before { content: '\f073'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(8)::before { content: '\f781'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(9)::before { content: '\f087'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    .nav-menu a:nth-child(10)::before { content: '\f0e0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
    
    .nav-menu a::before {
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: var(--primary-color);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        padding: 12px;
        background: rgba(212, 175, 55, 0.1);
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        overflow: hidden;
    }
    
    .nav-toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(212, 175, 55, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
    }
    
    .nav-toggle:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: var(--primary-color);
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    }
    
    .nav-toggle:hover::before {
        width: 100%;
        height: 100%;
    }
    
    .nav-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
        transform: rotate(90deg) scale(1.1);
    }
    
    .nav-toggle.active:hover {
        transform: rotate(90deg) scale(1.15);
    }

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: var(--text-primary);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        z-index: 2;
        border-radius: 2px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: var(--secondary-color);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--secondary-color);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Small mobile page-header fix */
    .page-header {
        padding: 110px 0 50px; /* Adjusted for smaller screens */
    }
    
    .page-header-content h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
        margin-bottom: 12px;
        padding: 0 15px;
    }
    
    .page-header-content p {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .payment-icons {
        flex-wrap: wrap;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Focus Styles */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 20px 0;
    }
}
