@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    /* Brand */
    --primary-color: #ff5b2e;
    --primary-dark: #d9431b;
    --secondary-color: #07132b;
    --secondary-light: #112447;
    --accent-color: #00d4ff;

    /* Surfaces */
    --bg-dark: #050b1a;
    --bg-light: #eef3fb;
    --bg-white: #ffffff;
    --card-dark: #0b1a35;

    /* Text */
    --text-dark: #1c2434;
    --text-light: #ffffff;
    --text-muted: #90a0be;

    /* Type */
    --font-heading: 'Rajdhani', 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Effects */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 6px 15px rgba(6, 16, 34, 0.08);
    --shadow-md: 0 14px 30px rgba(6, 16, 34, 0.14);
    --shadow-lg: 0 22px 45px rgba(6, 16, 34, 0.2);
}

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

*::selection {
    background: rgba(255, 91, 46, 0.2);
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 14px;
    font-size: 16px;
    color: #5b6b86;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 25px rgba(255, 91, 46, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(255, 91, 46, 0.45);
}

.btn::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 50%;
    height: 300%;
    transform: rotate(20deg);
    background: rgba(255, 255, 255, 0.22);
    transition: all 0.6s ease;
}

.btn:hover::after {
    left: 120%;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--secondary-color);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 91, 46, 0.35);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: transparent;
}

/* Section wrappers */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 46px);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-bottom: 14px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 76px;
    height: 4px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: #6a7894;
}

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

/* Accessibility */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

/* Utility Classes */
.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.w-full {
    width: 100%;
}

.d-none {
    display: none;
}

.text-muted-light {
    color: #a0aec0;
}

.text-muted-contact {
    color: #ccc;
    margin-bottom: 30px;
}

/* Footer logo sizing */
.footer-logo-img {
    height: 110px;
}

/* Contact social icon circles */
.contact-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social-icon:hover {
    background: var(--primary-color);
}

/* Contact social wrapper override */
.contact-social-wrapper {
    justify-content: flex-start;
    gap: 15px;
}

/* ===== ADDITIONAL INFO (Shared) ===== */
.info-section {
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.info-card {
    background: #f8f9fc;
    border: 1px solid #e7edf8;
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 91, 46, 0.3);
    box-shadow: var(--shadow-md);
}

.info-card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 20px rgba(255, 91, 46, 0.25);
}

.info-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.info-card p {
    color: #41516f;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}