:root {
    --primary: #f7941d;
    --primary-dark: #d67b0d;
    --primary-light: #ffb04f;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-soft: #f8fafc;
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(15, 23, 42, 0.8);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-md: 16px;
    --radius-lg: 24px;
    --container: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-soft);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}


ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Header */
header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 .logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

header.scrolled .logo {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .menu-toggle {
    color: var(--secondary);
}

.highlight {
    background: linear-gradient(135deg, var(--primary), #ffb04f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    animation: floatHighlight 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes floatHighlight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .nav-links a {
    color: var(--secondary);
}

header.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a i,
.footer-links a i {
    margin-right: 8px;
    font-size: 0.9em;
    opacity: 0.8;
}

.nav-links a:hover i {
    opacity: 1;
    transform: scale(1.1);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.7)), url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    background: transparent;
    animation: zoomIn 1s ease-out;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn {
    padding: 18px 48px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 10px 20px -10px var(--primary);
}

.btn:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
    box-shadow: 0 15px 30px -10px var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Features Section */
.section-padding {
    padding: 120px 0;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 25px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(247, 148, 29, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(247, 148, 29, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Enhanced About Section Redesign */
.about-section {
    background: var(--white);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(247, 148, 29, 0.3);
    border: 5px solid white;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -20px); }
}

.exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text-wrapper {
    flex: 1.2;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-main-para {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-sub-para {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.about-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.perk-icon {
    width: 30px;
    height: 30px;
    background: rgba(247, 148, 29, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.perk-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 1024px) {
    .about-flex {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image-wrapper img {
        height: 450px;
    }
    
    .experience-card {
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }
    
    .about-perks {
        text-align: left;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Services */
.services {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    height: 380px;
    background: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    text-align: left;
    transition: var(--transition);
}

.service-card h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.service-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-card i {
    display: none; /* Hide old icons */
}

/* Contact Info */
.contact-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    padding: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(247, 148, 29, 0.2);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    margin-bottom: 25px;
    border: 2px solid #f1f5f9;
    border-radius: 15px;
    background: #f8fafc;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.1);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo .highlight {
    background: linear-gradient(135deg, var(--primary), #ffb04f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive Design Media Queries */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 968px) {
    header {
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--white); /* Default to white on hero */
        z-index: 1001;
    }

    header.scrolled .menu-toggle {
        color: var(--secondary);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--secondary);
    }

    .service-card {
        height: 320px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
        line-height: 1.4;
        max-width: 90%;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    #about [style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .feature-card {
        padding: 40px 20px;
    }

    .contact-info, .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
        padding: 15px 30px;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}