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

:root {
    --primary: #2A5C82;
    --primary-dark: #1D4563;
    --secondary: #FF6B35;  /* Bright orange */
    --secondary-dark: #FF4500;  /* Brighter orange for hover */
    --secondary-light: #FF8B5C; /* Lighter orange for text highlights */
    --light: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E8E8E8;
    --dark-gray: #777777;
    --dark: #1A1A1A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary);
    color: var(--light);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--light);
    color: var(--secondary);
    border: 2px solid var(--light);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-title2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary);
}

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

/* Navigation */
.navbar {
    background-color: var(--primary);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.8rem;
    opacity: 0.9;
}

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

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}

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

.nav-cta .btn {
    margin-right: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 150px 0 100px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--light);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}
/* Hero Section with Blueprint Design */
.blueprint-container {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blueprint-grid {
    width: 100%;
    height: 100%;
    position: relative;
    background: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.grid-line {
    position: absolute;
    background-color: rgba(255, 107, 53, 0.3);
}

.grid-line.horizontal {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    animation: drawLineHorizontal 1.5s ease-out forwards;
}

.grid-line.vertical {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    animation: drawLineVertical 1.5s ease-out forwards;
}

.blueprint-measurement, 
.blueprint-note {
    position: absolute;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.blueprint-measurement:nth-child(3) {
    top: 30%;
    left: 30%;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

.blueprint-measurement:nth-child(4) {
    bottom: 30%;
    right: 30%;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

.blueprint-note:nth-child(5) {
    top: 40%;
    right: 20%;
    animation: fadeInUp 1s ease 1.1s forwards;
    opacity: 0;
}

.blueprint-note:nth-child(6) {
    bottom: 40%;
    left: 20%;
    animation: fadeInUp 1s ease 1.4s forwards;
    opacity: 0;
}

@keyframes drawLineHorizontal {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes drawLineVertical {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

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

/* About Section - Clean Two-Column with Accent */
/* Services Section - Light Gray Background */
/* About Section - Light Gray Background */
.about {
    background-color: var(--light-gray);
    position: relative;
}

/* Add decorative element between sections */
.about::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    background-color: var(--light-gray);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}


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

.clean-item {
    padding: 30px;
    position: relative;
}

.story-item {
    border-left: 4px solid var(--primary);
    padding-left: 40px;
}

.work-item {
    border-left: 4px solid var(--secondary);
    padding-left: 40px;
}

.item-accent {
    position: absolute;
    left: -22px;
    top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accent-line {
    width: 2px;
    height: 20px;
    background-color: var(--primary);
}

.story-item .accent-line {
    background-color: var(--primary);
}

.work-item .accent-line {
    background-color: var(--secondary);
}

.accent-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: -2px;
}

.work-item .accent-icon {
    border-color: var(--secondary);
    color: var(--secondary);
}

.item-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.work-item .item-title {
    color: var(--secondary);
}

.item-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .clean-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .clean-item {
        padding: 25px;
        padding-left: 35px;
    }
    
    .item-accent {
        left: -18px;
    }
    
    .accent-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .item-title {
        font-size: 1.6rem;
    }
}

/* Services Section */
.services {
    background-color: var(--light);
    padding-top: 100px; /* Extra padding to account for the decorative element */
}

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

.service-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(42, 92, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-name {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-details {
    list-style: none;
}

.service-details li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-details li .highlight {
    color: var(--secondary);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
}

.cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-section .btn {
    background-color: var(--secondary);
    color: var(--light);
}

.cta-section .btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-icon {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    order: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(42, 92, 130, 0.1);
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    order: 2;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-details p {
    color: var(--dark-gray);
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
    margin-bottom: 40px;
    margin-right: 40px;
}

.footer-description {
    margin: 20px 0;
    opacity: 0.7;
    line-height: 1.7;
    max-width: 400px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    margin-right: 30px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-column i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.developer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.developer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.developer-credit a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.footer-legal .developer-credit {
    display: inline;
    margin-left: 10px;
}

.footer-legal .developer-credit a {
    color: var(--gold);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 50px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-form {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

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

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-cta .btn {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
    }
    
    /* Mobile: Contact form comes before contact info */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form {
        order: 1;
        margin-bottom: 40px;
    }
    
    .contact-info {
        order: 2;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
    }
    
    .construction-icon {
        font-size: 6rem;
    }
    
    .about-heading {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}