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

:root {
    --primary: #1a1a2e;
    --accent: #d4534f;
    --accent-dark: #a63c38;
    --secondary: #16213e;
    --text-dark: #0f3460;
    --text-light: #555555;
    --text-muted: #888888;
    --bg-light: #f5f5f7;
    --white: #ffffff;
    --gold: #d4af37;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    background: var(--white);
    color: var(--text-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--accent);
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.logo a:hover {
    color: var(--accent);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    opacity: 0;
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    left: 0;
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(212, 83, 79, 0.25) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 2;
    padding-left: 5%;
    max-width: 55%;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease;
}

.hero-content .subtitle {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 300;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    animation: slideInLeft 0.8s ease 0.4s both;
    font-weight: 300;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 15px 45px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent);
    animation: slideInLeft 0.8s ease 0.6s both;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateX(8px);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 35px;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 50px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    color: var(--primary);
    position: relative;
    padding-bottom: 0;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: left;
    max-width: 600px;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

/* Full Width Image Section */
.full-width-section {
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.full-width-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.65);
    z-index: 0;
}

.full-width-section .container {
    position: relative;
    z-index: 1;
}

.full-width-section h2 {
    color: var(--white);
    font-size: 44px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.full-width-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.9;
    max-width: 700px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 50px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    border: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: var(--text-dark);
    color: var(--white);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-icon {
    font-size: 52px;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    transition: color 0.3s;
}

/* Content Sections */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 0;
}

.content-section.image-right {
    grid-template-columns: 1fr 1fr;
}

.content-section.image-left {
    grid-template-columns: 1fr 1fr;
}

.content-section.image-left .image-container {
    order: -1;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.content-text h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.9;
}

.content-text ul {
    list-style: none;
    margin-bottom: 25px;
}

.content-text li {
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.8;
}

.content-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 0;
    margin-top: 10px;
}

.btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateX(5px);
}

.btn-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 40px auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 83, 79, 0.1);
}

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

.form-group button {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    letter-spacing: 0.5px;
}

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

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.contact-item {
    text-align: center;
}

.contact-item-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

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

.contact-item a:hover {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 0 0;
    margin-top: 0;
}

.footer-content {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    margin-bottom: 22px;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    line-height: 1.8;
    color: #aaa;
    font-size: 14px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--accent);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 83, 79, 0.15);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-info {
    font-size: 14px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
    color: #aaa;
}

.contact-info i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    background: #0f0f0f;
    padding: 25px 0;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Page Hero */
.page-hero {
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(212, 83, 79, 0.25) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.grid-card {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.grid-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.grid-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: left;
        transition: left 0.3s;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    }

    .nav-menu li {
        margin: 15px 0;
    }

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

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 500px;
    }

    .hero-content {
        max-width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content .subtitle {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .content-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0;
    }

    .content-section.image-left .image-container {
        order: 0;
        margin-bottom: 20px;
    }

    .content-section.image-right .image-container {
        order: -1;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .page-hero p {
        font-size: 18px;
    }

    section {
        padding: 50px 0;
    }

    .full-width-section {
        padding: 50px 0;
    }

    .contact-form {
        margin: 40px 0;
    }

    .footer-grid {
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 0;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        display: none;
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content .subtitle {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .service-card {
        padding: 35px 25px;
    }

    .content-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-section.image-left .image-container {
        order: 0;
        margin-bottom: 15px;
    }

    .content-section.image-right .image-container {
        order: -1;
        margin-bottom: 15px;
    }

    .content-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .content-text p {
        font-size: 15px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-hero {
        height: 350px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .full-width-section h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .full-width-section p {
        font-size: 15px;
        max-width: 100%;
    }

    .contact-form {
        margin: 30px 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-group button {
        padding: 13px;
    }

    .contact-info-grid {
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
