/* Base & Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #173151;       /* Deep navy blue */
    --primary-light: #2c4c6c; /* Lighter navy */
    --secondary: #E24A00;     /* Rich brown */
    --secondary-light: #FF6B1A; /* Lighter brown */
    --accent: #d9c9a8;        /* Warm tan */
    --dark: #0f1a24;          /* Almost black */
    --light: #f8f5f0;         /* Cream white */
    --gray: #FF6B1A;          /* Medium gray */
    --light-gray: #e5e1d8;    /* Light warm gray */
    
    --header-height: 90px;
    --section-spacing: 120px;
    --content-width: 1280px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--content-width);
    margin: 0 auto;
    position: relative;
}

.container-fluid {
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Buttons & UI Elements */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.btn-primary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

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

.btn-accent:hover {
    background-color: #cab78e;
    transform: translateY(-3px);
}

.btn-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-light:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-icon i {
    transition: transform 0.3s ease;
}

.btn-icon:hover i {
    transform: translateX(5px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    position: relative;
    z-index: 10;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.5px;
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    margin-right: 30px;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

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

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

.nav-social {
    display: flex;
    gap: 15px;
}

.nav-social a {
    font-size: 16px;
    color: var(--primary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-social a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
    margin-top: var(--header-height);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(23, 49, 81, 0.9) 0%, rgba(23, 49, 81, 0.5) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    color: white;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
    color: var(--accent);
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.hero-tagline {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-pagination {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: white;
    transform: scale(1.3);
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    background-color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    padding: 40px 30px;
    background-color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
    z-index: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--secondary);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 0.02;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--secondary);
    color: white;
    transform: rotateY(180deg);
}

.feature-title {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.feature-text {
    margin-bottom: 25px;
}

/* About Section */
.about {
    padding: var(--section-spacing) 0;
    position: relative;
    background-color: var(--light);
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 25px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

.about-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: relative;
    z-index: 2;
}

.about-content {
    grid-column: 1 / 7;
    padding-right: 60px;
}

.about-title {
    font-size: 40px;
    margin-bottom: 30px;
    position: relative;
}

.about-text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.about-images {
    grid-column: 7 / -1;
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-inset-image {
    position: absolute;
    bottom: -50px;
    left: -80px;
    width: 60%;
    height: 300px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 10px solid white;
}

.about-inset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    padding: var(--section-spacing) 0;
    background-color: white;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(2) {
    grid-column: 4 / 9;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
    grid-column: 6 / 13;
    grid-row: 2 / 3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(23, 49, 81, 0.8) 0%, rgba(23, 49, 81, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
}

.gallery-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-link {
    transform: translateY(0);
    opacity: 1;
}

.gallery-link:hover {
    background-color: var(--secondary);
    color: white;
}

/* Floor Plans Section */
.floor-plans {
    padding: var(--section-spacing) 0;
    background-color: var(--light);
    position: relative;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.tab-button {
    padding: 15px 30px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    width: 100%;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--secondary);
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.plan-content {
    padding: 30px;
}

.plan-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.plan-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.plan-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
}

.plan-detail i {
    color: var(--secondary);
}

.plan-description {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.plan-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: var(--gray);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-spacing) 0;
    background-color: var(--light);
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-slide {
    text-align: center;
}

.quote-icon {
    font-size: 64px;
    color: var(--accent);
    margin-bottom: 30px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--accent);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: var(--gray);
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--secondary);
    transform: scale(1.3);
}

.testimonial-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background-color: var(--secondary);
    color: white;
}

/* Contact Section */
.contact {
    padding: var(--section-spacing) 0;
    background-color: white;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.contact-info {
    grid-column: 1 / 6;
    padding-right: 30px;
}

.contact-title {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.contact-text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-value {
    color: var(--gray);
}

.contact-value a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--secondary);
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.contact-form {
    grid-column: 6 / -1;
    background-color: var(--light);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: white;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-check-input {
    margin-top: 5px;
}

.form-check-label {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--primary);
    background-image: linear-gradient(to right, var(--primary) 0%, var(--primary-light) 100%), url('../img/cta-bg.jpg');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 25px;
    color: white;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo a {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 28px;
    color: white;
}

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

.footer-about {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    position: relative;
    padding-left: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link:hover::before {
    transform: translateX(3px);
}

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

.footer-contact-item {
    display: flex;
    gap: 15px;
}

.footer-contact-icon {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

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

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

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Hover Layer Effect */
.hover-layer {
    position: relative;
}

.hover-layer::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: rgba(23, 49, 81, 0.5);
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.hover-layer:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --section-spacing: 100px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        grid-column: 1 / -1;
        padding-right: 0;
    }
    
    .about-images {
        grid-column: 1 / -1;
    }
    
    .about-bg {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info, .contact-form {
        grid-column: 1 / -1;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 80px;
        --section-spacing: 80px;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        gap: 15px;
        z-index: 900;
    }
    
    .main-nav.show {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .gallery-item {
        width: 50%;
        height: 300px;
    }
    
    .about-inset-image {
        bottom: -30px;
        left: -30px;
    }
    
    .experience-badge {
        width: 140px;
        height: 140px;
        top: -20px;
        right: -20px;
    }
    
    .experience-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        width: 100%;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .testimonial-arrows {
        display: none;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 70px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        padding-left: 40px;
    }
    
    .hero-subtitle::before {
        width: 30px;
    }
    
    .hero-pagination {
        bottom: 30px;
        right: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .testimonial-slider {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .about-inset-image {
        display: none;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
    }
    
    .experience-number {
        font-size: 36px;
    }
    
    .about-main-image {
        height: 400px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .nav-social {
        display: none;
    }
}