:root {
    --primary: #FF6B35; /* Vibrant orange */
    --primary-light: #FF8E5D;
    --secondary: #000000; /* Pure black */
    --light: #FFFFFF;
    --dark: #0A0A0A;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 107, 53, 0.2);
    --shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--light);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

nav a:hover,
nav a.active {
    color: var(--primary);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title span {
    color: var(--primary);
    font-weight: 600;
}

.hero-name {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

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

.btn-outline:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

/* Profile Card (from indexx.html) */
.profile-card {
    position: absolute;
    right: 10%;
    width: 35%;
    max-width: 500px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.profile-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: block;
    transition: var(--transition);
}

/* Skills Section (from indexx.html) */
.section {
    padding: 80px 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.skill-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Video Section (from indexx.html) */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    margin-top: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-name {
        font-size: 3.5rem;
    }
    
    .profile-card {
        width: 40%;
        right: 5%;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
        padding-bottom: 80px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .profile-card {
        position: relative;
        right: auto;
        width: 70%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero-name {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

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

.hero-content, .section {
    animation: fadeIn 1s ease-out forwards;
}

.profile-card {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.skill-card:nth-child(1) { animation-delay: 0.2s; }
.skill-card:nth-child(2) { animation-delay: 0.4s; }
.skill-card:nth-child(3) { animation-delay: 0.6s; }




/* About Page Hero */
.about-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), 
                url('design-studio-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero h1 span {
    color: var(--primary);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-container img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.professional-info {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

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

/* Expertise Section */
.expertise-section {
    background: var(--glass-bg);
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: rgba(20, 20, 20, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.expertise-card ul {
    list-style: none;
}

.expertise-card li {
    padding: 0.7rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
}

.expertise-card li:before {
    content: "•";
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Tools Section */
.tools-section {
    padding: 5rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: rgba(20, 20, 20, 0.7);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tool-card img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: grayscale(100%) brightness(1.5);
    transition: var(--transition);
}

.tool-card:hover img {
    filter: none;
}

.tool-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.skill-level {
    background: rgba(255,255,255,0.1);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 5px;
    position: relative;
}

.level-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
}

.tool-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), 
                url('abstract-bg.jpg') no-repeat center center/cover;
    padding: 5rem 0;
}

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

.testimonial-card {
    background: rgba(30, 30, 30, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 3rem;
    color: rgba(255, 107, 53, 0.2);
    z-index: 0;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .expertise-grid, .tools-grid {
        grid-template-columns: 1fr;
    }
}




/* Portfolio Page Styles */
.portfolio-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), 
                url('design-studio-bg.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.portfolio-hero h1 span {
    color: var(--primary);
}

.portfolio-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Portfolio Filter */
.portfolio-filter {
    padding: 2rem 0;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-buttons button {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

/* Portfolio Grid */
.portfolio-grid {
    padding: 4rem 0;
}

.portfolio-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img,
.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
}

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

.overlay h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.overlay p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.view-btn {
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.view-btn:hover {
    background: var(--primary-light);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.portfolio-info span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 0;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}
.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Video Autoplay Styles */
.video-preview {
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay i {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.video-overlay:hover i {
    transform: scale(1.2);
    opacity: 1;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Custom controls styling (optional) */
video::-webkit-media-controls {
    background: rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .portfolio-hero h1 {
        font-size: 2.8rem;
    }
    
    .portfolio-grid .container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        height: 40vh;
    }
    
    .portfolio-hero h1 {
        font-size: 2.2rem;
    }
    
    .portfolio-hero p {
        font-size: 1.1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-buttons button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}




/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), 
                url('services-bg.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-hero h1 span {
    color: var(--primary);
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Intro */
.services-intro {
    padding: 5rem 0;
    text-align: center;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.specialization-tags span {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--glass-border);
}

/* Pricing Section */
.pricing-section {
    background: var(--glass-bg);
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.pricing-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border: 1px solid var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.price span {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features li {
    padding: 0.8rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features i {
    color: var(--primary);
}

/* Service Details */
.service-details {
    padding: 5rem 0;
}

.service-accordion {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item.active {
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(20, 20, 20, 0.7);
    border: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-align: left;
}

.accordion-header i:first-child {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
}

.accordion-header h3 {
    flex-grow: 1;
    font-size: 1.3rem;
}

.accordion-header .fa-chevron-down {
    transition: transform 0.3s ease;
}

.accordion-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
}

.service-description h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-description p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.service-description ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-description li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.service-description strong {
    color: var(--light);
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}



/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), 
                url('contact-bg.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero h1 span {
    color: var(--primary);
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: rgba(20, 20, 20, 0.7);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(20, 20, 20, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-content p,
.info-content a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary);
}

.social-links {
    background: rgba(20, 20, 20, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.booking-card {
    background: rgba(20, 20, 20, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.booking-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.booking-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    padding: 0 0 5rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-form,
    .info-card,
    .social-links,
    .booking-card {
        padding: 2rem;
    }
    
    .map-container iframe {
        height: 400px;
    }
}